| 43 | {} |
| 44 | |
| 45 | [[nodiscard]] |
| 46 | constexpr _Value *allocate(std::size_t n) |
| 47 | { |
| 48 | bytes_ += n * sizeof(_Value); |
| 49 | return static_cast<_Value *>(::operator new(n * sizeof(_Value))); |
| 50 | } |
| 51 | |
| 52 | constexpr void deallocate(_Value *ptr, std::size_t n) noexcept |
| 53 | { |
nothing calls this directly
no test coverage detected