From 0911040999d32cd76012ada940d9ad92bd694e2e Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 19 Dec 2022 16:38:19 +0100 Subject: [PATCH] express: Fix compile error with GCC --- panda/src/express/pointerToArray_ext.I | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/panda/src/express/pointerToArray_ext.I b/panda/src/express/pointerToArray_ext.I index a56368f36b..7ebb8afd4d 100644 --- a/panda/src/express/pointerToArray_ext.I +++ b/panda/src/express/pointerToArray_ext.I @@ -518,8 +518,8 @@ template INLINE PointerToArray Extension >:: __deepcopy__(PyObject *memo) const { PointerToArray copy; - if (!_this->is_null()) { - copy.v() = _this->v(); + if (!this->_this->is_null()) { + copy.v() = this->_this->v(); } return copy; } @@ -725,8 +725,8 @@ template INLINE ConstPointerToArray Extension >:: __deepcopy__(PyObject *memo) const { PointerToArray copy; - if (!_this->is_null()) { - copy.v() = _this->v(); + if (!this->_this->is_null()) { + copy.v() = this->_this->v(); } return copy; }