diff --git a/include/continuable/continuable-promise-base.hpp b/include/continuable/continuable-promise-base.hpp index d70e7f9..bacdcf0 100644 --- a/include/continuable/continuable-promise-base.hpp +++ b/include/continuable/continuable-promise-base.hpp @@ -67,13 +67,13 @@ public: /// Resolves the continuation with the given values template void set_value(Args&&... args) { - data_(detail::base::dispatch_result_tag{}, std::forward(args)...); + data_(std::forward(args)...); } /// Resolves the continuation with the given values template void operator()(Args&&... args) { - data_(detail::base::dispatch_result_tag{}, std::forward(args)...); + data_(std::forward(args)...); } /// Resolves the continuation with the given error variable.