| 347 | bool operator!() const { return m_obj == nullptr; } |
| 348 | |
| 349 | bool operator==(const T* obj) const { return T::GetObject(m_obj) == T::GetObject(obj); } |
| 350 | |
| 351 | bool operator==(const Ref<T>& obj) const { return T::GetObject(m_obj) == T::GetObject(obj.m_obj); } |
| 352 |
nothing calls this directly
no test coverage detected