Removed overloaded equality members.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
e599bc730f
commit
373988c8b0
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue