| 203 | } |
| 204 | |
| 205 | static void* mem_leak_operator_new_nothrow (size_t size) UT_NOTHROW |
| 206 | { |
| 207 | return MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewAllocator(), size); |
| 208 | } |
| 209 | |
| 210 | static void* mem_leak_operator_new_debug (size_t size, const char* file, size_t line) UT_THROW(std::bad_alloc) |
| 211 | { |
nothing calls this directly
no test coverage detected