Commit 50d5f00c authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #1039

parents d68acc5d 5a34f527
......@@ -43,6 +43,11 @@ struct exit_msg {
error reason;
};
/// @relates exit_msg
inline bool operator==(const exit_msg& x, const exit_msg& y) noexcept {
return x.source == y.source && x.reason == y.reason;
}
/// @relates exit_msg
template <class Inspector>
typename Inspector::result_type inspect(Inspector& f, exit_msg& x) {
......
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