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
Branches
Tags
No related merge requests found
...@@ -95,12 +95,12 @@ private: ...@@ -95,12 +95,12 @@ private:
struct Message struct Message
{ {
MessageToken token; MessageToken token {};
std::string to; std::string to {};
std::map<std::string, std::string> payloads; std::map<std::string, std::string> payloads {};
MessageStatus status {MessageStatus::IDLE}; MessageStatus status {MessageStatus::IDLE};
unsigned retried {0}; unsigned retried {0};
clock::time_point last_op; clock::time_point last_op {};
MSGPACK_DEFINE_MAP(token, to, payloads, status, retried, 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.
Please register or to comment