| 90 | // ----------------------------------------------------------------------------- |
| 91 | |
| 92 | void * operator new (size_t size) { return track_new_impl(size); } |
| 93 | void * operator new[](size_t size) { return track_new_impl(size); } |
| 94 | |
| 95 | void * operator new (size_t size, std::nothrow_t const &) noexcept { return track_new_impl(size); } |
nothing calls this directly
no test coverage detected