Commit c62249f6 authored by Dominik Charousset's avatar Dominik Charousset

Remove unused function parameter

parent a4403092
......@@ -6,7 +6,7 @@ using namespace caf;
using foo = typed_actor<replies_to<int>::with_either<int>::or_else<float>>;
foo::behavior_type my_foo(foo::pointer self) {
foo::behavior_type my_foo() {
return {
[](int arg) -> either<int>::or_else<float> {
if (arg == 42) {
......
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