Fixed var name

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@693 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2006-03-16 04:50:00 +00:00
parent 50b998a566
commit 08c221a5d6

View File

@@ -405,7 +405,7 @@ public:
// Overloaded operators
T& operator *() const { assert(m_pType); return *m_pType; }
T* operator ->() const { assert(m_pType); return m_pType; }
bool operator ==(T* rhs) { return (m_pType == p); }
bool operator ==(T* rhs) { return (m_pType == rhs); }
bool operator ==(const CSmartPtr<T>& rhs) { return (m_pType == *rhs); }
/**