| 286 | } |
| 287 | |
| 288 | pointer allocate(size_type n, const void* = 0) |
| 289 | { |
| 290 | ++(*count_); |
| 291 | return static_cast<T*>(::operator new(sizeof(T) * n)); |
| 292 | } |
| 293 | |
| 294 | void deallocate(pointer p, size_type) |
| 295 | { |
nothing calls this directly
no test coverage detected