| 88 | |
| 89 | template<typename Stream> |
| 90 | inline unsigned char readByte(Stream& in) { |
| 91 | unsigned char out; |
| 92 | in.read(&out, 1); |
| 93 | return out; |
| 94 | } |
| 95 | |
| 96 | template<typename Stream> |
| 97 | inline void writeSigned64(long long value, Stream& out) { |
no test coverage detected