| 3108 | // this version should be also present as a pair for "delete". |
| 3109 | |
| 3110 | void* operator new(size_t s) |
| 3111 | { |
| 3112 | return getExternalMemoryPool()->allocate(s ALLOC_ARGS); |
| 3113 | } |
| 3114 | |
| 3115 | void* operator new[](size_t s) |
| 3116 | { |
nothing calls this directly
no test coverage detected