Fixed build error introduced by c3f2711b09

This commit is contained in:
Robert Osfield 2016-05-23 11:31:02 +01:00
parent c3f2711b09
commit 5260e3a35e

View File

@ -112,8 +112,6 @@ class ref_ptr
return _ptr;
}
T& operator*() const { return *_ptr; }
T* operator->() const { return _ptr; }
T* get() const { return _ptr; }
bool operator!() const { return _ptr==0; } // not required