Commit a6dd2bc4 authored by Dominik Charousset's avatar Dominik Charousset

Merge branch 'develop' of github.com:actor-framework/actor-framework into develop

parents f4ddeb2b 61f3cd3f
......@@ -85,7 +85,7 @@ void client_bhvr(event_based_actor* self, const string& host,
return none;
};
self->become (
on(pred, arg_match) >> [=](atom_value op, int lhs, int rhs) {
on(pred, val<int>, val<int>) >> [=](atom_value op, int lhs, int rhs) {
self->sync_send_tuple(server, self->last_dequeued()).then(
on(atom("result"), arg_match) >> [=](int result) {
aout(self) << lhs << " "
......
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