| 352 | } |
| 353 | |
| 354 | T* allocate(std::size_t n) const |
| 355 | { |
| 356 | ++(*live_count_); |
| 357 | ++(*total_count_); |
| 358 | return static_cast<T*>(::operator new(sizeof(T) * n)); |
| 359 | } |
| 360 | |
| 361 | void deallocate(T* p, std::size_t /*n*/) const |
| 362 | { |
nothing calls this directly
no test coverage detected