| 202 | |
| 203 | |
| 204 | uint32_t BinaryReader::ReadBE32() |
| 205 | { |
| 206 | uint32_t result; |
| 207 | if (!BNReadBE32(m_stream, &result)) |
| 208 | throw ReadException(); |
| 209 | return result; |
| 210 | } |
| 211 | |
| 212 | |
| 213 | uint64_t BinaryReader::ReadBE64() |
nothing calls this directly
no test coverage detected