| 37 | uint8_t StreamReader::readUInt8() { return readUnsigned<uint8_t>(); } |
| 38 | |
| 39 | int8_t StreamReader::readInt8() { return static_cast<int8_t>(readUInt8()); } |
| 40 | |
| 41 | uint16_t StreamReader::readUInt16() { return readUnsigned<uint16_t>(); } |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected