| 787 | } |
| 788 | |
| 789 | void Free(uint8_t* buffer, int64_t size, int64_t alignment) { |
| 790 | pool_->Free(buffer, size, alignment); |
| 791 | stats_.DidFreeBytes(size); |
| 792 | } |
| 793 | |
| 794 | void ReleaseUnused() { pool_->ReleaseUnused(); } |
| 795 |
nothing calls this directly
no test coverage detected