mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 19:30:41 +00:00
Fix indentation
svn-id: r47499
This commit is contained in:
parent
aab6485d32
commit
0d2a75c75d
16
common/ptr.h
16
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.
|
||||
|
Loading…
Reference in New Issue
Block a user