| 139 | |
| 140 | |
| 141 | uint64_t BinaryReader::ReadLE64() |
| 142 | { |
| 143 | uint64_t result; |
| 144 | if (!BNReadLE64(m_stream, &result)) |
| 145 | throw ReadException(); |
| 146 | return result; |
| 147 | } |
| 148 | |
| 149 | uint64_t BinaryReader::ReadLEPointer() |
| 150 | { |
nothing calls this directly
no test coverage detected