diff options
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/refcnt.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/refcnt.hh b/src/base/refcnt.hh index 64224ca7f..b73183a1a 100644 --- a/src/base/refcnt.hh +++ b/src/base/refcnt.hh @@ -109,7 +109,7 @@ bool operator==(const RefCountingPtr<T> &l, const T *r) { return l.get() == r; } template<class T> -bool operator==(const T &l, const RefCountingPtr<T> &r) +bool operator==(const T *l, const RefCountingPtr<T> &r) { return l == r.get(); } template<class T> @@ -121,7 +121,7 @@ bool operator!=(const RefCountingPtr<T> &l, const T *r) { return l.get() != r; } template<class T> -bool operator!=(const T &l, const RefCountingPtr<T> &r) +bool operator!=(const T *l, const RefCountingPtr<T> &r) { return l != r.get(); } #endif // __BASE_REFCNT_HH__ |