From 7e8ef5a354d6ce44b59387a39b5de43fca7987a3 Mon Sep 17 00:00:00 2001 From: KStocky Date: Mon, 1 Dec 2025 17:40:35 +0000 Subject: [PATCH] Fixing an issue with the use of dependent names that MSVC is now flagging. --- include/tuplet/tuple.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tuplet/tuple.hpp b/include/tuplet/tuple.hpp index 41e82b6..8d704e2 100644 --- a/include/tuplet/tuple.hpp +++ b/include/tuplet/tuple.hpp @@ -40,13 +40,13 @@ static_cast<::tuplet::forward_as_t>(tup).value /// Gets a member in a tuple via the base class #define TUPLET_GET_M(BaseType, tup, value) \ - tup.::tuplet::identity_t::value + tup.::tuplet::template identity_t::value #elif __clang__ /// Looks up a member in a tuple via the base class, and forwards it #define TUPLET_FWD_M(TupleType, BaseType, tup, value) \ static_cast(tup).::tuplet::identity_t::value #define TUPLET_GET_M(BaseType, tup, value) \ - tup.::tuplet::identity_t::value + tup.::tuplet::template identity_t::value #else /// Looks up a member in a tuple via the base class, and forwards it #define TUPLET_FWD_M(TupleType, BaseType, tup, value) \