| 273 | int64_t max_memory() const override { return wrapped_->max_memory(); } |
| 274 | |
| 275 | int64_t total_bytes_allocated() const override { |
| 276 | return wrapped_->total_bytes_allocated(); |
| 277 | } |
| 278 | |
| 279 | int64_t num_allocations() const override { return wrapped_->num_allocations(); } |
| 280 |
nothing calls this directly
no test coverage detected