| 114 | uint8_t _buf[4]; |
| 115 | |
| 116 | static inline void* operator new(size_t basicSize, size_t bufferSize) noexcept { |
| 117 | return malloc(basicSize - sizeof(sharedBuffer::_buf) + bufferSize); |
| 118 | } |
| 119 | |
| 120 | static inline void operator delete(void *self) { |
| 121 | assert_precondition(isHeapAligned(self)); |
nothing calls this directly
no outgoing calls
no test coverage detected