| 393 | #undef new |
| 394 | |
| 395 | void* __cdecl operator new(std::size_t size) |
| 396 | { |
| 397 | #ifdef USE_STOMP |
| 398 | return StompAlloc((int)size); |
| 399 | #else |
| 400 | return DbgHeapAlloc(size, "", 0); |
| 401 | #endif |
| 402 | } |
| 403 | |
| 404 | void* __cdecl operator new(std::size_t size, const char* fileName, int lineNum) |
| 405 | { |
nothing calls this directly
no test coverage detected