| 608 | using value_type = T; |
| 609 | |
| 610 | custom_allocator(int* live_count, int* total_count) |
| 611 | : live_count_(live_count), |
| 612 | total_count_(total_count) |
| 613 | { |
| 614 | } |
| 615 | |
| 616 | template <typename U> |
| 617 | custom_allocator(const custom_allocator<U>& other) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected