| 293 | } |
| 294 | |
| 295 | pointer allocate(size_type n, const void* = 0) |
| 296 | { |
| 297 | ++(*count_); |
| 298 | return static_cast<T*>(::operator new(sizeof(T) * n)); |
| 299 | } |
| 300 | |
| 301 | void deallocate(pointer p, size_type) |
| 302 | { |
nothing calls this directly
no test coverage detected