| 130 | |
| 131 | |
| 132 | uint32_t BinaryReader::ReadLE32() |
| 133 | { |
| 134 | uint32_t result; |
| 135 | if (!BNReadLE32(m_stream, &result)) |
| 136 | throw ReadException(); |
| 137 | return result; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | uint64_t BinaryReader::ReadLE64() |
nothing calls this directly
no test coverage detected