Commit a35d1109 authored by Dominik Charousset's avatar Dominik Charousset

Fix extra-semicolon warning

parent 8d450870
......@@ -49,12 +49,12 @@ public:
# if __cplusplus > 201103L
auto make_callback() {
return [=](param_t<Xs>... xs) { return (*this)(std::move(xs)...); };
};
}
# else
// C++11
std::function<result<Ys...> (param_t<Xs>...)> make_callback() {
return [=](param_t<Xs>... xs) { return (*this)(std::move(xs)...); };
};
}
# endif
};
......
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