| 115 | explicit MyObject3(int value) : value(value) { print_created(this, toString()); } |
| 116 | std::string toString() const { return "MyObject3[" + std::to_string(value) + "]"; } |
| 117 | virtual ~MyObject3() { print_destroyed(this); } |
| 118 | |
| 119 | private: |
| 120 | int value; |
nothing calls this directly
no test coverage detected