| 108 | #endif |
| 109 | |
| 110 | Expect<void> WriteByte(std::ostream &OS, uint8_t Data) noexcept { |
| 111 | OS.put(static_cast<char>(Data)); |
| 112 | return {}; |
| 113 | } |
| 114 | |
| 115 | Expect<void> WriteU32(std::ostream &OS, uint32_t Data) noexcept { |
| 116 | do { |
no outgoing calls
no test coverage detected