Commit 1be3c672 authored by Dominik Charousset's avatar Dominik Charousset

Remove misplaced return statement

parent 78a49dfa
......@@ -696,8 +696,7 @@ public:
void run_exhaustively_until(bool_predicate predicate)
CAF_DEPRECATED_MSG("use run_until() instead") {
auto res = sched.run_cycle_until(predicate, credit_round_interval);
return res.first + res.second;
sched.run_cycle_until(predicate, credit_round_interval);
}
void loop_after_next_enqueue()
......
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