| 92 | } |
| 93 | |
| 94 | static void operator delete(void* ptr) { |
| 95 | default_memory_pool()->Free(reinterpret_cast<uint8_t*>(ptr), sizeof(Derived)); |
| 96 | } |
| 97 | }; |
| 98 | |
| 99 | ////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected