diff --git a/src/Math/MathTypeTraits.h b/src/Math/MathTypeTraits.h index 5f4bb5cdb..3208711d0 100644 --- a/src/Math/MathTypeTraits.h +++ b/src/Math/MathTypeTraits.h @@ -113,12 +113,12 @@ template struct MathTypeTraitsFloatingPoint { template struct MathTypeTraitsLong {}; -template<> struct MathTypeTraitsLong<8> { +template<> struct MathTypeTraitsLong { typedef unsigned int UnsignedType; typedef int Type; }; -template<> struct MathTypeTraitsLong<16> { +template<> struct MathTypeTraitsLong { typedef unsigned long long UnsignedType; typedef long long Type; };