| 39 | int8_t StreamReader::readInt8() { return static_cast<int8_t>(readUInt8()); } |
| 40 | |
| 41 | uint16_t StreamReader::readUInt16() { return readUnsigned<uint16_t>(); } |
| 42 | |
| 43 | int16_t StreamReader::readInt16() { return static_cast<int16_t>(readUInt16()); } |
| 44 |
no outgoing calls
no test coverage detected