| 253 | } |
| 254 | |
| 255 | static void* normal_operator_new_nothrow (size_t size) UT_NOTHROW |
| 256 | { |
| 257 | return PlatformSpecificMalloc(size); |
| 258 | } |
| 259 | |
| 260 | static void* normal_operator_new_debug (size_t size, const char* /*file*/, size_t /*line*/) UT_THROW(std::bad_alloc) |
| 261 | { |
nothing calls this directly
no test coverage detected