mirror of
https://github.com/romixlab/qmsgpack.git
synced 2025-07-31 02:47:14 +02:00
Fix erroneous comparison instead of assignment
This commit is contained in:
@ -79,7 +79,7 @@ MsgPackStream& operator>>(MsgPackStream& s, QTime &t)
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
if (len == 1) {
|
if (len == 1) {
|
||||||
t == QTime();
|
t = QTime();
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
quint8 p[4];
|
quint8 p[4];
|
||||||
|
Reference in New Issue
Block a user