| 328 | } |
| 329 | |
| 330 | Errata |
| 331 | VolumeAllocator::fillEmptySpans() |
| 332 | { |
| 333 | Errata zret; |
| 334 | // Walk the spans, skipping ones that are not empty. |
| 335 | for (auto span : _cache._spans) { |
| 336 | if (span->isEmpty()) { |
| 337 | this->allocateFor(*span); |
| 338 | } |
| 339 | } |
| 340 | return zret; |
| 341 | } |
| 342 | |
| 343 | Errata |
| 344 | VolumeAllocator::allocateSpan(swoc::file::path const &input_file_path) |
no test coverage detected