| 47 | int32_t StreamReader::readInt32() { return static_cast<int32_t>(readUInt32()); } |
| 48 | |
| 49 | uint64_t StreamReader::readUInt64() { return readUnsigned<uint64_t>(); } |
| 50 | |
| 51 | int64_t StreamReader::readInt64() { return static_cast<int64_t>(readUInt64()); } |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected