Fix HiddenPtr::isNull()

This commit is contained in:
Martin Natano
2023-02-19 19:04:23 +01:00
parent c2b9b09418
commit 7981676f53
+1 -1
View File
@@ -176,7 +176,7 @@ public:
} }
#endif #endif
bool isNull() const { return m_pPtr != nullptr; } bool isNull() const { return m_pPtr == nullptr; }
private: private:
T *m_pPtr; T *m_pPtr;