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

Fix type in scheduled_actor::make_stage

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