From 7fa5650d291922c9e2934ae0e13b5be4c1b5673d Mon Sep 17 00:00:00 2001 From: J Reece Wilson Date: Fri, 11 Aug 2023 10:25:02 +0100 Subject: [PATCH] [*] Conformity: Fix unexpected qualified names --- Include/auROXTL/Objects/SOO.hpp | 4 ++-- Include/auROXTL/auTupleUtils.hpp | 6 +++--- Include/auROXTLTypes.hpp | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Include/auROXTL/Objects/SOO.hpp b/Include/auROXTL/Objects/SOO.hpp index 4f31b0b..22c6856 100644 --- a/Include/auROXTL/Objects/SOO.hpp +++ b/Include/auROXTL/Objects/SOO.hpp @@ -44,7 +44,7 @@ struct Type ## SOO AUROXTL_INTERFACE_SOO_HDR_(vis, Type ## SOO, targetSize, ## __VA_ARGS__) \ inline auto operator ->() \ { \ - if constexpr (std::is_const_v>) \ + if constexpr (std::is_const_v>) \ { \ return (const extends *)this->padding; \ \ @@ -57,7 +57,7 @@ struct Type ## SOO \ inline auto AsPointer() \ { \ - if constexpr (std::is_const_v>) \ + if constexpr (std::is_const_v>) \ { \ return (const extends *)this->padding; \ } \ diff --git a/Include/auROXTL/auTupleUtils.hpp b/Include/auROXTL/auTupleUtils.hpp index 246a18c..325532e 100644 --- a/Include/auROXTL/auTupleUtils.hpp +++ b/Include/auROXTL/auTupleUtils.hpp @@ -52,13 +52,13 @@ template struct AuIsPair_C; template -struct AuIsPair_C::value>> +struct AuIsPair_C::value>> { - using type = typename AuPair; + using type = AuPair; }; template -struct AuIsPair_C::value>> +struct AuIsPair_C::value>> { using type = void; }; diff --git a/Include/auROXTLTypes.hpp b/Include/auROXTLTypes.hpp index 49ef2f0..8f20fcc 100644 --- a/Include/auROXTLTypes.hpp +++ b/Include/auROXTLTypes.hpp @@ -11,6 +11,7 @@ #include #include #include + #include #include #include #include