From 6f1bcbc8a8d56f40883cea518f648d358a20e69d Mon Sep 17 00:00:00 2001 From: Spongman <1088194+Spongman@users.noreply.github.com> Date: Sun, 9 Mar 2025 13:49:56 -0700 Subject: [PATCH] fix clang template argument list warning --- include/continuable/continuable-promisify.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)...); }