remove warning

This commit is contained in:
2025-08-02 22:23:07 +03:00
parent a2c24c9f07
commit 91955d44fa

View File

@@ -162,7 +162,7 @@ inline PIBinaryStream<P> & operator<<(PIBinaryStream<P> & s, const bool v) {
} }
template<typename P> template<typename P>
inline PIBinaryStream<P> & operator>>(PIBinaryStream<P> & s, bool & v) { inline PIBinaryStream<P> & operator>>(PIBinaryStream<P> & s, bool & v) {
uchar c; uchar c = 0;
s.binaryStreamTake(&c, sizeof(c)); s.binaryStreamTake(&c, sizeof(c));
v = c; v = c;
return s; return s;