Fix indentation

svn-id: r47499
This commit is contained in:
Jordi Vilalta Prat 2010-01-24 12:19:09 +00:00
parent aab6485d32
commit 0d2a75c75d

View File

@ -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.