| 208 | } |
| 209 | |
| 210 | uint64_t SubByteReaderLogging::readUEV(const std::string &symbolName, const Options &options) |
| 211 | { |
| 212 | try |
| 213 | { |
| 214 | auto [value, code] = SubByteReader::readUE_V(); |
| 215 | checkAndLog(this->currentTreeLevel, "ue(v)", symbolName, options, value, code); |
| 216 | return value; |
| 217 | } |
| 218 | catch (const std::exception &ex) |
| 219 | { |
| 220 | this->logExceptionAndThrowError(ex, "UEV symbol " + symbolName); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | int64_t SubByteReaderLogging::readSEV(const std::string &symbolName, const Options &options) |
| 225 | { |