| 222 | } |
| 223 | |
| 224 | int64_t SubByteReaderLogging::readSEV(const std::string &symbolName, const Options &options) |
| 225 | { |
| 226 | try |
| 227 | { |
| 228 | auto [value, code] = SubByteReader::readSE_V(); |
| 229 | checkAndLog(this->currentTreeLevel, "se(v)", symbolName, options, value, code); |
| 230 | return value; |
| 231 | } |
| 232 | catch (const std::exception &ex) |
| 233 | { |
| 234 | this->logExceptionAndThrowError(ex, "SEV symbol " + symbolName); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | uint64_t SubByteReaderLogging::readLEB128(const std::string &symbolName, const Options &options) |
| 239 | { |