mirror of
https://github.com/znc/znc.git
synced 2026-05-03 12:02:30 +02:00
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:
2
Utils.h
2
Utils.h
@@ -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); }
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user