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

@ -236,19 +236,22 @@ struct MsgInfoSummary : RsSerializable
{
MsgInfoSummary() : msgflags(0), count(0), ts(0) {}
RsMailMessageId msgId;
RsMailMessageId msgId;
RsPeerId srcId;
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;
int count; /* file count */
int count; /** file count */
rstime_t ts;
// RsSerializable interface
void serial_process(RsGenericSerializer::SerializeJob j, RsGenericSerializer::SerializeContext &ctx) {
/// @see RsSerializable
void serial_process(
RsGenericSerializer::SerializeJob j,
RsGenericSerializer::SerializeContext &ctx) override
{
RS_SERIAL_PROCESS(msgId);
RS_SERIAL_PROCESS(srcId);