Commit 8b341bc0 authored by neverlord's avatar neverlord

reformatting

parent 0bf5d7d5
......@@ -117,6 +117,11 @@ class actor_template {
};
template<typename... Args>
auto actor_prototype(Args const&... args) -> actor_template<decltype(mexpr_concat(args...))> {
return {mexpr_concat(args...)};
}
struct ping_actor : fsm_actor<ping_actor> {
behavior init_state;
......@@ -212,11 +217,6 @@ struct server_actor : fsm_actor<server_actor> {
};
template<typename... Args>
auto actor_prototype(Args const&... args) -> actor_template<decltype(mexpr_concat(args...))> {
return {mexpr_concat(args...)};
}
template<typename Arg0>
void usage(Arg0&& arg0) {
cout << std::forward<Arg0>(arg0) << endl << endl;
......
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