| 21 | } |
| 22 | |
| 23 | void u32(std::uint32_t v) { |
| 24 | for (int i = 0; i < 4; ++i) buf_.push_back(static_cast<std::uint8_t>(v >> (8*i))); |
| 25 | } |
| 26 | |
| 27 | void u64(std::uint64_t v) { |
| 28 | for (int i = 0; i < 8; ++i) buf_.push_back(static_cast<std::uint8_t>(v >> (8*i))); |
nothing calls this directly
no outgoing calls
no test coverage detected