| 191 | |
| 192 | #ifndef CHAR_EQUALS_INT8 |
| 193 | template<typename Stream> inline void Serialize(Stream& s, char a ) { ser_writedata8(s, a); } // TODO Get rid of bare char |
| 194 | #endif |
| 195 | template<typename Stream> inline void Serialize(Stream& s, int8_t a ) { ser_writedata8(s, a); } |
| 196 | template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); } |
no test coverage detected