| 21 | #include <algorithm> |
| 22 | |
| 23 | DiskCache::DiskCache(const string& path, int size, uint64_t blocks, off_t imgoff) |
| 24 | : sec_path(path), sec_size(size), sec_blocks(blocks), imgoffset(imgoff) |
| 25 | { |
| 26 | assert(blocks > 0); |
| 27 | assert(imgoff >= 0); |
| 28 | } |
| 29 | |
| 30 | bool DiskCache::Save() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected