summaryrefslogtreecommitdiff
path: root/yapf/countedptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'yapf/countedptr.hpp')
-rw-r--r--yapf/countedptr.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yapf/countedptr.hpp b/yapf/countedptr.hpp
index 7d9f61fc2..1ac986cf5 100644
--- a/yapf/countedptr.hpp
+++ b/yapf/countedptr.hpp
@@ -74,7 +74,7 @@ public:
FORCEINLINE bool operator == (const CCountedPtr& sp) const {return m_pT == sp.m_pT;}
/** yet another way how to test for NULL value */
- FORCEINLINE bool operator != (const CCountedPtr& sp) const {return m_pT != sp.m_pT;}
+ FORCEINLINE bool operator != (const CCountedPtr& sp) const {return m_pT != sp.m_pT;}
/** assign pointer w/o incrementing ref count */
FORCEINLINE void Attach(Tcls* pT) {Release(); m_pT = pT;}