Commit d0bdbb04 authored by Dominik Charousset's avatar Dominik Charousset

Fix on_error_complete

parent 4aa07140
...@@ -24,8 +24,8 @@ public: ...@@ -24,8 +24,8 @@ public:
} }
template <class Next, class... Steps> template <class Next, class... Steps>
void on_error(Next& next, Steps&... steps) { void on_complete(Next& next, Steps&... steps) {
next.on_error(steps...); next.on_complete(steps...);
} }
template <class Next, class... Steps> template <class Next, class... Steps>
......
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