| 250 | } |
| 251 | |
| 252 | uint64_t |
| 253 | SubByteReaderLogging::readNS(const std::string &symbolName, uint64_t maxVal, const Options &options) |
| 254 | { |
| 255 | try |
| 256 | { |
| 257 | auto [value, code] = SubByteReader::readNS(maxVal); |
| 258 | checkAndLog(this->currentTreeLevel, "ns(n)", symbolName, options, value, code); |
| 259 | return value; |
| 260 | } |
| 261 | catch (const std::exception &ex) |
| 262 | { |
| 263 | this->logExceptionAndThrowError(ex, "ns symbol " + symbolName); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | int64_t |
| 268 | SubByteReaderLogging::readSU(const std::string &symbolName, unsigned nrBits, const Options &options) |
nothing calls this directly
no test coverage detected