| 166 | [[maybe_unused]] const NewDeleteAllocator<U>& other) noexcept {} |
| 167 | |
| 168 | pointer allocate(size_type n, const void* /*hint*/ = nullptr) { |
| 169 | return reinterpret_cast<pointer>(internal::AlignedNew( |
| 170 | n * sizeof(T), static_cast<std::align_val_t>(alignof(T)))); |
| 171 | } |
| 172 | |
| 173 | #if defined(__cpp_lib_allocate_at_least) && \ |
| 174 | __cpp_lib_allocate_at_least >= 202302L |
nothing calls this directly
no test coverage detected