Removed overloaded equality members.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-05-26 13:31:56 +02:00
parent e599bc730f
commit 373988c8b0
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 0 additions and 4 deletions

View File

@ -24,10 +24,6 @@ public:
inline bool operator==(const borrowed_ptr& rhs) const { return _raw == rhs._raw; } inline bool operator==(const borrowed_ptr& rhs) const { return _raw == rhs._raw; }
inline bool operator!=(const borrowed_ptr& rhs) const { return _raw != rhs._raw; } inline bool operator!=(const borrowed_ptr& rhs) const { return _raw != rhs._raw; }
inline bool operator==(T* rhs) const { return _raw == rhs; }
inline bool operator!=(T* rhs) const { return _raw != rhs; }
inline bool operator==(const T* rhs) const { return _raw == rhs; }
inline bool operator!=(const T* rhs) const { return _raw != rhs; }
}; };
#endif // ARBUTILS_BORROWED_PTR_HPP #endif // ARBUTILS_BORROWED_PTR_HPP