Default constructor
| 10 | public: |
| 11 | /// Default constructor |
| 12 | Object() { print_default_created(this); } |
| 13 | |
| 14 | /// Copy constructor |
| 15 | Object(const Object &) : m_refCount(0) { print_copy_created(this); } |
nothing calls this directly
no test coverage detected