From 9a28cd6862efd48d741f433b0fa618532c66a466 Mon Sep 17 00:00:00 2001 From: Reece Date: Mon, 17 Apr 2023 04:30:17 +0100 Subject: [PATCH] [*] why the hell --- Include/auROXTL/auSwapExchangeUtils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/auROXTL/auSwapExchangeUtils.hpp b/Include/auROXTL/auSwapExchangeUtils.hpp index a75647a..9b5643c 100644 --- a/Include/auROXTL/auSwapExchangeUtils.hpp +++ b/Include/auROXTL/auSwapExchangeUtils.hpp @@ -11,7 +11,7 @@ namespace __audetail template struct AuHasSwap { - template static constexpr AuTrueType Test(decltype(static_cast(&C::Swap))); + template static constexpr AuTrueType Test(decltype(static_cast(&C::Swap))); template static constexpr AuFalseType Test(...); using type = decltype(Test(0)); }; @@ -19,7 +19,7 @@ namespace __audetail template struct AuHasswap { - template static constexpr AuTrueType Test(decltype(static_cast(&C::swap))); + template static constexpr AuTrueType Test(decltype(static_cast(&C::swap))); template static constexpr AuFalseType Test(...); using type = decltype(Test(0)); };