Commit 3e8817f0 authored by Dominik Charousset's avatar Dominik Charousset

Fix type in scheduled_actor::make_stage

parent 8ff74b9a
......@@ -521,8 +521,8 @@ public:
stream<typename stream_stage_trait_t<Fun>::output>
make_stage(const stream<In>& in, Init init, Fun fun, Cleanup cleanup,
policy::arg<Gatherer, Scatterer> policies = {}) {
return add_stage(in, std::make_tuple(), std::move(init), std::move(fun),
std::move(cleanup), policies);
return make_stage(in, std::make_tuple(), std::move(init), std::move(fun),
std::move(cleanup), policies);
}
/// Creates a new stream sink of type T.
......
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