diff --git a/include/continuable/continuable-promisify.hpp b/include/continuable/continuable-promisify.hpp index e7eaa54..6f1b7e2 100644 --- a/include/continuable/continuable-promisify.hpp +++ b/include/continuable/continuable-promisify.hpp @@ -78,7 +78,7 @@ public: /// \since 3.0.0 template static auto from(Callable&& callable, Args&&... args) { - return helper::template from(detail::convert::default_resolver(), + return helper::template from(detail::convert::default_resolver(), std::forward(callable), std::forward(args)...); } @@ -109,7 +109,7 @@ public: /// \since 4.0.0 template static auto with(Resolver&& resolver, Callable&& callable, Args&&... args) { - return helper::template from(std::forward(resolver), + return helper::template from(std::forward(resolver), std::forward(callable), std::forward(args)...); }