| 1119 | SizeComputer() = default; |
| 1120 | |
| 1121 | void write(std::span<const std::byte> src) |
| 1122 | { |
| 1123 | m_size += src.size(); |
| 1124 | } |
| 1125 | |
| 1126 | /** Pretend this many bytes are written, without specifying them. */ |
| 1127 | void seek(uint64_t num) |
no test coverage detected