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)); };