| 76 | } |
| 77 | |
| 78 | static void* mem_leak_realloc(void* memory, size_t size, const char* file, size_t line) |
| 79 | { |
| 80 | return MemoryLeakWarningPlugin::getGlobalDetector()->reallocMemory(getCurrentMallocAllocator(), (char*) memory, size, file, line, true); |
| 81 | } |
| 82 | |
| 83 | #endif |
| 84 |
nothing calls this directly
no test coverage detected