From 6e6e53886d35288e773cf84d307ce1b58d5f978f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 16 Dec 2012 18:50:29 +0100 Subject: [PATCH] Removed dead code. --- src/Math/MathTypeTraits.h | 12 ------------ 1 file changed, 12 deletions(-) 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 {