| 131 | class CppCallable { |
| 132 | public: |
| 133 | CppCallable() { track_default_created(this); } |
| 134 | ~CppCallable() { track_destroyed(this); } |
| 135 | CppCallable(const CppCallable &) { track_copy_created(this); } |
| 136 | CppCallable(CppCallable &&) noexcept { track_move_created(this); } |
nothing calls this directly
no test coverage detected