Commit 739709a3 authored by Dominik Charousset's avatar Dominik Charousset

Fix extra semicolon warning

parent a2660f28
......@@ -36,10 +36,11 @@
#define CAF_MSG_TYPE_ADD_ATOM(name) \
struct name {}; \
constexpr name name##_v = name{}; \
template <class Inspector> \
auto inspect(Inspector& f, name&) { \
return f(meta::type_name("caf::" #name)); \
} \
constexpr name name##_v = name { \
}
namespace caf {
......
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