\brief Virtual protected deconstructor. * (Will only be called by \ref ref) */
| 42 | * (Will only be called by \ref ref) |
| 43 | */ |
| 44 | virtual ~Object() { print_destroyed(this); } |
| 45 | |
| 46 | private: |
| 47 | mutable std::atomic<int> m_refCount{0}; |
nothing calls this directly
no test coverage detected