Commit e40a570d authored by Dominik Charousset's avatar Dominik Charousset

Fix conversion warning

parent c132cb6a
......@@ -72,7 +72,7 @@ public:
}
static inline size_t id_of(const mailbox_element& x) noexcept {
return x.mid.category();
return static_cast<size_t>(x.mid.category());
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment