| 483 | typedef T value_type; |
| 484 | |
| 485 | MapAllocator(BaseAllocatorType* a) : alloc_(a) {} |
| 486 | MapAllocator(const MapAllocator& rhs) : alloc_(rhs.alloc_) {} |
| 487 | |
| 488 | pointer allocate(size_type n, const void* = nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected