diff --git a/src/Math/MathTypeTraits.h b/src/Math/MathTypeTraits.h index 7b4693cf6..2b54f8e3a 100644 --- a/src/Math/MathTypeTraits.h +++ b/src/Math/MathTypeTraits.h @@ -120,18 +120,6 @@ template struct MathTypeTraitsFloatingPoint { } }; -template struct MathTypeTraitsLong {}; - -template<> struct MathTypeTraitsLong<4> { - typedef std::uint32_t UnsignedType; - typedef std::int32_t Type; -}; - -template<> struct MathTypeTraitsLong<8> { - typedef std::uint64_t UnsignedType; - typedef std::int64_t Type; -}; - } template<> struct MathTypeTraits: Implementation::MathTypeTraitsIntegral {