| 6 | using TBlock = TDefaultAllocator::TBlock; |
| 7 | |
| 8 | TBlock TDefaultAllocator::Allocate(size_t len) { |
| 9 | TBlock ret = {y_allocate(len), len}; |
| 10 | |
| 11 | return ret; |
| 12 | } |
| 13 | |
| 14 | void TDefaultAllocator::Release(const TBlock& block) { |
| 15 | y_deallocate(block.Data); |
no test coverage detected