| 14 | public: |
| 15 | std::size_t pos() const noexcept { return buf_.size(); } |
| 16 | void u8 (std::uint8_t v) { buf_.push_back(v); } |
| 17 | |
| 18 | void u16(std::uint16_t v) { |
| 19 | buf_.push_back(static_cast<std::uint8_t>(v)); |
nothing calls this directly
no outgoing calls
no test coverage detected