| 66 | } |
| 67 | |
| 68 | auto operator delete(void* ptr) noexcept -> void { |
| 69 | if (ptr != nullptr) { |
| 70 | free(ptr); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | auto operator delete(void* ptr, size_t) noexcept -> void { |
| 75 | if (ptr != nullptr) { |
nothing calls this directly
no test coverage detected