Browse Source

Merge branch 'master' into compatibility

Vladimír Vondruš 14 years ago
parent
commit
2dd0f111db
  1. 4
      src/Math/MathTypeTraits.h

4
src/Math/MathTypeTraits.h

@ -115,12 +115,12 @@ template<class T> struct MathTypeTraitsFloatingPoint {
template<size_t> struct MathTypeTraitsLong {}; template<size_t> struct MathTypeTraitsLong {};
template<> struct MathTypeTraitsLong<8> { template<> struct MathTypeTraitsLong<sizeof(int)> {
typedef unsigned int UnsignedType; typedef unsigned int UnsignedType;
typedef int Type; typedef int Type;
}; };
template<> struct MathTypeTraitsLong<16> { template<> struct MathTypeTraitsLong<sizeof(long long)> {
typedef unsigned long long UnsignedType; typedef unsigned long long UnsignedType;
typedef long long Type; typedef long long Type;
}; };

Loading…
Cancel
Save