| 185 | #endif |
| 186 | |
| 187 | void deallocate(pointer p, size_type n) noexcept { |
| 188 | internal::SizedAlignedDelete(p, n * sizeof(T), |
| 189 | static_cast<std::align_val_t>(alignof(T))); |
| 190 | } |
| 191 | |
| 192 | template <typename U, typename... Args> |
| 193 | void construct(U* p, Args&&... args) { |
nothing calls this directly
no test coverage detected