| 92 | } |
| 93 | |
| 94 | static void write_bytes( |
| 95 | std::vector<bool>& bits, unsigned& cursor, const Bytes& bytes) |
| 96 | { |
| 97 | for (uint8_t b : bytes) |
| 98 | write_byte(bits, cursor, b); |
| 99 | } |
| 100 | |
| 101 | static void write_gap(std::vector<bool>& bits, unsigned& cursor, int length) |
| 102 | { |
no test coverage detected