| 64 | : stream(stream), requiredAlignment(alignment) {} |
| 65 | |
| 66 | void writeByte(uint8_t byte) { stream.write(static_cast<char>(byte)); } |
| 67 | |
| 68 | template <typename Enum, std::enable_if_t<std::is_enum<Enum>::value, int> = 0> |
| 69 | void writeByte(Enum value) { |
no test coverage detected