| 61 | class EncodingWriter { |
| 62 | public: |
| 63 | EncodingWriter(raw_ostream &stream, uint64_t alignment = 1) |
| 64 | : stream(stream), requiredAlignment(alignment) {} |
| 65 | |
| 66 | void writeByte(uint8_t byte) { stream.write(static_cast<char>(byte)); } |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected