| 44 | } |
| 45 | |
| 46 | void operator delete[](void* ptr) noexcept { |
| 47 | VVL_TracyFree(ptr); |
| 48 | free(ptr); |
| 49 | }; |
| 50 | |
| 51 | void* operator new(std::size_t size, const std::nothrow_t&) noexcept { |
| 52 | auto ptr = malloc(size); |
nothing calls this directly
no test coverage detected