| 121 | |
| 122 | |
| 123 | uint16_t BinaryReader::ReadLE16() |
| 124 | { |
| 125 | uint16_t result; |
| 126 | if (!BNReadLE16(m_stream, &result)) |
| 127 | throw ReadException(); |
| 128 | return result; |
| 129 | } |
| 130 | |
| 131 | |
| 132 | uint32_t BinaryReader::ReadLE32() |
nothing calls this directly
no test coverage detected