diff options
author | Jordi Vilalta Prat | 2010-01-24 12:19:09 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-01-24 12:19:09 +0000 |
commit | 0d2a75c75d7b0f5330fba59eaf51dd574366b9c6 (patch) | |
tree | b3d43c57f4fa360509c79dc19bf6ef2a97114d01 | |
parent | aab6485d322cc71e37aa3ec525b832169831fc1a (diff) | |
download | scummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.tar.gz scummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.tar.bz2 scummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.zip |
Fix indentation
svn-id: r47499
-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. |