| 78 | } |
| 79 | |
| 80 | void deallocate(T* p, size_type /*n*/) { std::free(p); } |
| 81 | |
| 82 | size_type max_size() const noexcept { |
| 83 | return std::numeric_limits<size_type>::max() / sizeof(value_type); |
nothing calls this directly
no outgoing calls
no test coverage detected