Skip to content
Snippets Groups Projects
Commit b4e03d76 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

misc: fix build warning about initializer list

Change-Id: I0c61aa6a067afbf2afda46b1d2fae630254bf116
parent 9d9b77f1
No related branches found
No related tags found
No related merge requests found
......@@ -95,12 +95,12 @@ private:
struct Message
{
MessageToken token;
std::string to;
std::map<std::string, std::string> payloads;
MessageToken token {};
std::string to {};
std::map<std::string, std::string> payloads {};
MessageStatus status {MessageStatus::IDLE};
unsigned retried {0};
clock::time_point last_op;
clock::time_point last_op {};
MSGPACK_DEFINE_MAP(token, to, payloads, status, retried, last_op)
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment