Fixed build

This commit is contained in:
Robert Osfield 2018-09-11 09:31:35 +01:00
parent 8780347f2f
commit 7fae3b67cd

View File

@ -123,7 +123,7 @@ public:
bool operator == (const observer_ptr& wp) const { return _reference == wp._reference; }
bool operator != (const observer_ptr& wp) const { return _reference != wp._reference; }
bool operator < (const observer_ptr& wp) const { return _reference < wp._reference; }
bool operator > (const observer_ptr& wp) const { return _reference > wp._reference; }
bool operator > (const observer_ptr& wp) const { return wp._reference < _reference; }
// Non-strict interface, for compatibility
// comparison operator for const T*.