| 49 | uint64_t StreamReader::readUInt64() { return readUnsigned<uint64_t>(); } |
| 50 | |
| 51 | int64_t StreamReader::readInt64() { return static_cast<int64_t>(readUInt64()); } |
| 52 | |
| 53 | std::string StreamReader::readString() { |
| 54 | std::string result; |
nothing calls this directly
no outgoing calls
no test coverage detected