Fix compialtion after merge

This commit is contained in:
Gioacchino Mazzurco 2018-04-27 20:55:38 +02:00
parent f3ae61b462
commit be75e89ad2
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051
2 changed files with 8 additions and 8 deletions

View file

@ -132,10 +132,10 @@ struct RsGxsForumNotifyRecordsItem: public RsItem
virtual ~RsGxsForumNotifyRecordsItem() {} virtual ~RsGxsForumNotifyRecordsItem() {}
void serial_process( RsGenericSerializer::SerializeJob j, RsGenericSerializer::SerializeContext& ctx ) void serial_process( RsGenericSerializer::SerializeJob j,
{ RsGenericSerializer::SerializeContext& ctx )
RS_REGISTER_SERIAL_MEMBER(records); { RS_SERIAL_PROCESS(records); }
}
void clear() {} void clear() {}
std::map<RsGxsGroupId,time_t> records; std::map<RsGxsGroupId,time_t> records;

View file

@ -107,10 +107,10 @@ struct RsGxsForumNotifyRecordsItem: public RsItem
virtual ~RsGxsForumNotifyRecordsItem() {} virtual ~RsGxsForumNotifyRecordsItem() {}
void serial_process( RsGenericSerializer::SerializeJob j, RsGenericSerializer::SerializeContext& ctx ) void serial_process( RsGenericSerializer::SerializeJob j,
{ RsGenericSerializer::SerializeContext& ctx )
RS_REGISTER_SERIAL_MEMBER(records); { RS_SERIAL_PROCESS(records); }
}
void clear() {} void clear() {}
std::map<RsGxsGroupId,time_t> records; std::map<RsGxsGroupId,time_t> records;