| 37 | std::atomic<int> m_refs; |
| 38 | T* m_object; |
| 39 | DbgRefCountObject() : m_refs(0), m_object(nullptr) {} |
| 40 | virtual ~DbgRefCountObject() {} |
| 41 | |
| 42 | T* GetObject() const { return m_object; } |
nothing calls this directly
no outgoing calls
no test coverage detected