| 19 | } |
| 20 | |
| 21 | void Release(const TBlock& block) override { |
| 22 | TMappedAllocation tmp(0); |
| 23 | TMappedAllocation* real = ((TMappedAllocation*)block.Data) - 1; |
| 24 | |
| 25 | real->swap(tmp); |
| 26 | real->~TMappedAllocation(); |
| 27 | } |
| 28 | }; |
| 29 | } // namespace |
| 30 |
nothing calls this directly
no test coverage detected