| 1412 | void *operator new(size_t aBytes) {return SimpleHeap::Alloc(aBytes);} |
| 1413 | void *operator new[](size_t aBytes) {return SimpleHeap::Alloc(aBytes);} |
| 1414 | void operator delete(void *aPtr) {} |
| 1415 | void operator delete[](void *aPtr) {} |
| 1416 | }; |
| 1417 |
nothing calls this directly
no outgoing calls
no test coverage detected