aboutsummaryrefslogtreecommitdiff
path: root/common/ptr.h
diff options
context:
space:
mode:
authorJordi Vilalta Prat2010-01-24 12:19:09 +0000
committerJordi Vilalta Prat2010-01-24 12:19:09 +0000
commit0d2a75c75d7b0f5330fba59eaf51dd574366b9c6 (patch)
treeb3d43c57f4fa360509c79dc19bf6ef2a97114d01 /common/ptr.h
parentaab6485d322cc71e37aa3ec525b832169831fc1a (diff)
downloadscummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.tar.gz
scummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.tar.bz2
scummvm-rg350-0d2a75c75d7b0f5330fba59eaf51dd574366b9c6.zip
Fix indentation
svn-id: r47499
Diffstat (limited to 'common/ptr.h')
-rw-r--r--common/ptr.h18
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.