Commit c7182118 authored by Dominik Charousset's avatar Dominik Charousset

Fix signature check for set_default_handler

parent b1009986
...@@ -309,7 +309,7 @@ public: ...@@ -309,7 +309,7 @@ public:
/// Sets a custom handler for unexpected messages. /// Sets a custom handler for unexpected messages.
template <class F> template <class F>
typename std::enable_if<std::is_convertible< typename std::enable_if<std::is_convertible<
F, std::function<result<message>(message&)>>::value>::type F, std::function<skippable_result(message&)>>::value>::type
set_default_handler(F fun) { set_default_handler(F fun) {
default_handler_ = [=](scheduled_actor*, message& xs) { return fun(xs); }; default_handler_ = [=](scheduled_actor*, message& xs) { return fun(xs); };
} }
......
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