| 192 | class MyObject5 { // managed by huge_unique_ptr |
| 193 | public: |
| 194 | explicit MyObject5(int value) : value{value} { print_created(this); } |
| 195 | MyObject5(const MyObject5 &) = delete; |
| 196 | ~MyObject5() { print_destroyed(this); } |
| 197 | int value; |
no test coverage detected