| 234 | } |
| 235 | |
| 236 | static void mem_leak_operator_delete (void* mem) UT_NOTHROW |
| 237 | { |
| 238 | MemoryLeakWarningPlugin::getGlobalDetector()->invalidateMemory((char*) mem); |
| 239 | MemoryLeakWarningPlugin::getGlobalDetector()->deallocMemory(getCurrentNewAllocator(), (char*) mem); |
| 240 | } |
| 241 | |
| 242 | static void mem_leak_operator_delete_array (void* mem) UT_NOTHROW |
| 243 | { |
nothing calls this directly
no test coverage detected