| 132 | |
| 133 | |
| 134 | void BinaryWriter::WriteBE64(uint64_t val) |
| 135 | { |
| 136 | if (!BNWriteBE64(m_stream, val)) |
| 137 | throw WriteException(); |
| 138 | } |
| 139 | |
| 140 | |
| 141 | bool BinaryWriter::TryWrite(const void* src, size_t len) |
nothing calls this directly
no test coverage detected