| 149 | " 0x" << used << std::endl; |
| 150 | } |
| 151 | void Arena::walk() const |
| 152 | { |
| 153 | for (const auto& chunk: chunks_used) |
| 154 | printchunk(chunk.first, chunk.second, true); |
| 155 | std::cout << std::endl; |
| 156 | for (const auto& chunk: chunks_free) |
| 157 | printchunk(chunk.first, chunk.second->first, false); |
| 158 | std::cout << std::endl; |
| 159 | } |
| 160 | #endif |
| 161 | |
| 162 | /*******************************************************************************/ |