| 27 | } |
| 28 | |
| 29 | void *mc2_malloc_info(std::uint32_t size, const char * /* file */, std::int32_t /* line */) { |
| 30 | return operator new(size); |
| 31 | } |
| 32 | |
| 33 | void mc2_free(void *ptr) { |
| 34 | if (ptr != nullptr) operator delete(ptr); |
nothing calls this directly
no outgoing calls
no test coverage detected