| 50 | } |
| 51 | |
| 52 | constexpr void deallocate(_Value *ptr, std::size_t n) noexcept |
| 53 | { |
| 54 | bytes_ -= n * sizeof(_Value); |
| 55 | ::operator delete(ptr); |
| 56 | } |
| 57 | |
| 58 | bool operator==(test_allocator const &other) const noexcept |
| 59 | { |
nothing calls this directly
no test coverage detected