Missed return statement.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-07-01 18:18:54 +03:00
parent fc73ace034
commit efa1bc6f27

View file

@ -69,6 +69,7 @@ inline QDataStream &operator>>(QDataStream &s, QFlags<Enum> &e)
int v; int v;
s >> v; s >> v;
e = static_cast<QFlags<Enum>>(v); e = static_cast<QFlags<Enum>>(v);
return s;
} }
#endif #endif