| 187 | #if __cpp_sized_deallocation >= 201309 |
| 188 | |
| 189 | JEMALLOC_ALWAYS_INLINE |
| 190 | void |
| 191 | sizedDeleteImpl(void* ptr, std::size_t size) noexcept { |
| 192 | if (unlikely(ptr == nullptr)) { |
| 193 | return; |
| 194 | } |
| 195 | je_sdallocx_noflags(ptr, size); |
| 196 | } |
| 197 | |
| 198 | void |
| 199 | operator delete(void *ptr, std::size_t size) noexcept { |
no test coverage detected