Fix compile warning in RsMsg

This commit is contained in:
Gioacchino Mazzurco 2019-09-26 12:29:11 +02:00
parent bdad0036f5
commit d673ef3256
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051

View file

@ -240,15 +240,18 @@ struct MsgInfoSummary : RsSerializable
RsPeerId srcId; RsPeerId srcId;
uint32_t msgflags; uint32_t msgflags;
std::list<uint32_t> msgtags; // that leaves 25 bits for user-defined tags. std::list<uint32_t> msgtags; /// that leaves 25 bits for user-defined tags.
std::string title; std::string title;
int count; /* file count */ int count; /** file count */
rstime_t ts; rstime_t ts;
// RsSerializable interface /// @see RsSerializable
void serial_process(RsGenericSerializer::SerializeJob j, RsGenericSerializer::SerializeContext &ctx) { void serial_process(
RsGenericSerializer::SerializeJob j,
RsGenericSerializer::SerializeContext &ctx) override
{
RS_SERIAL_PROCESS(msgId); RS_SERIAL_PROCESS(msgId);
RS_SERIAL_PROCESS(srcId); RS_SERIAL_PROCESS(srcId);