| 289 | } |
| 290 | |
| 291 | static void normal_operator_delete_array (void* mem) UT_NOTHROW |
| 292 | { |
| 293 | PlatformSpecificFree(mem); |
| 294 | } |
| 295 | |
| 296 | static void *(*operator_new_fptr)(size_t size) UT_THROW(std::bad_alloc) = mem_leak_operator_new; |
| 297 | static void *(*operator_new_nothrow_fptr)(size_t size) UT_NOTHROW = mem_leak_operator_new_nothrow; |
nothing calls this directly
no test coverage detected