| 124 | return reinterpret_cast<T*>(a_.template allocate<alignof(T)>(n*sizeof(T))); |
| 125 | } |
| 126 | void deallocate(T* p, std::size_t n) noexcept |
| 127 | { |
| 128 | a_.deallocate(reinterpret_cast<char*>(p), n*sizeof(T)); |
| 129 | } |
| 130 | |
| 131 | template <class T1, std::size_t N1, std::size_t A1, |
| 132 | class U, std::size_t M, std::size_t A2> |
nothing calls this directly
no test coverage detected