diff options
-rw-r--r-- | common/ptr.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/common/ptr.h b/common/ptr.h index 5c8bf2b642..bceba2787d 100644 --- a/common/ptr.h +++ b/common/ptr.h @@ -180,15 +180,15 @@ public: _pointer = 0; } - template<class T2> - bool operator==(const Common::SharedPtr<T2> &r) const { - return _pointer == r.get(); - } - - template<class T2> - bool operator!=(const Common::SharedPtr<T2> &r) const { - return _pointer != r.get(); - } + template<class T2> + bool operator==(const Common::SharedPtr<T2> &r) const { + return _pointer == r.get(); + } + + template<class T2> + bool operator!=(const Common::SharedPtr<T2> &r) const { + return _pointer != r.get(); + } /** * Returns the number of references to the assigned pointer. |