mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-17 13:24:15 -05:00
Fix compile warning in RsMsg
This commit is contained in:
parent
bdad0036f5
commit
d673ef3256
@ -236,19 +236,22 @@ struct MsgInfoSummary : RsSerializable
|
|||||||
{
|
{
|
||||||
MsgInfoSummary() : msgflags(0), count(0), ts(0) {}
|
MsgInfoSummary() : msgflags(0), count(0), ts(0) {}
|
||||||
|
|
||||||
RsMailMessageId msgId;
|
RsMailMessageId msgId;
|
||||||
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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user