| 524 | int64_t max_memory() const override { return stats_.max_memory(); } |
| 525 | |
| 526 | int64_t total_bytes_allocated() const override { |
| 527 | return stats_.total_bytes_allocated(); |
| 528 | } |
| 529 | |
| 530 | int64_t num_allocations() const override { return stats_.num_allocations(); } |
| 531 |
nothing calls this directly
no test coverage detected