| 91 | } |
| 92 | |
| 93 | void Delete() noexcept override { |
| 94 | void* const that = this; |
| 95 | const auto size = size_; |
| 96 | std::destroy_at(this); |
| 97 | internal::SizedDelete(that, Overhead() + size); |
| 98 | } |
| 99 | |
| 100 | const size_t size_; |
| 101 | char data_[]; |
nothing calls this directly
no test coverage detected