diff --git a/nall/traits.hpp b/nall/traits.hpp index e2607687..4870670e 100644 --- a/nall/traits.hpp +++ b/nall/traits.hpp @@ -39,9 +39,11 @@ namespace nall { using std::true_type; } +#if !defined(__clang__) || __clang_major__ < 20 namespace std { #if INTMAX_BITS >= 128 template<> struct is_signed : true_type {}; template<> struct is_unsigned : true_type {}; #endif } +#endif