From fb55a37a6623bc3124211725f04a3425bb83b3e6 Mon Sep 17 00:00:00 2001 From: Joseph Schuchart Date: Wed, 30 Oct 2024 10:23:09 -0400 Subject: [PATCH] Fix tuple_element index in make_tt Signed-off-by: Joseph Schuchart --- ttg/ttg/make_tt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttg/ttg/make_tt.h b/ttg/ttg/make_tt.h index 97e6dfccc..f999677d6 100644 --- a/ttg/ttg/make_tt.h +++ b/ttg/ttg/make_tt.h @@ -150,7 +150,7 @@ class CallableWrapTTArgs if constexpr (funcT_receives_input_tuple) { return fn(std::forward(args_tuple), std::forward(args)...); } else { - return fn(baseT::template get>(std::forward(args_tuple))..., + return fn(baseT::template get>(std::forward(args_tuple))..., std::forward(args)...); } };