diff -r 98632ba2212a -r a08cb4b5c179 yapf/countedptr.hpp --- a/yapf/countedptr.hpp Mon Aug 28 12:57:33 2006 +0000 +++ b/yapf/countedptr.hpp Mon Aug 28 18:53:03 2006 +0000 @@ -74,7 +74,7 @@ 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;}