From 6ff26d90f37b3314ae2d996230c32f7655682576 Mon Sep 17 00:00:00 2001 From: Jeff Walden Date: Sat, 9 Mar 2013 14:20:14 -0800 Subject: [PATCH] Bug 847480 - Remove unused (verified by manual inspection and try) DeprecatedAbs overloads so it's harder for new uses to pop up. r=Ms2ger --HG-- extra : rebase_source : dff4d6d2c7006fbc296c9ae0b08d3e66219f7846 --- mfbt/MathAlgorithms.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mfbt/MathAlgorithms.h b/mfbt/MathAlgorithms.h index 0e68cfec29c..0a478105532 100644 --- a/mfbt/MathAlgorithms.h +++ b/mfbt/MathAlgorithms.h @@ -52,20 +52,14 @@ namespace detail { template struct AllowDeprecatedAbsFixed : FalseType {}; -template<> struct AllowDeprecatedAbsFixed : TrueType {}; -template<> struct AllowDeprecatedAbsFixed : TrueType {}; template<> struct AllowDeprecatedAbsFixed : TrueType {}; template<> struct AllowDeprecatedAbsFixed : TrueType {}; template struct AllowDeprecatedAbs : AllowDeprecatedAbsFixed {}; -template<> struct AllowDeprecatedAbs : IntegralConstant {}; -template<> struct AllowDeprecatedAbs : TrueType {}; -template<> struct AllowDeprecatedAbs : TrueType {}; template<> struct AllowDeprecatedAbs : TrueType {}; template<> struct AllowDeprecatedAbs : TrueType {}; -template<> struct AllowDeprecatedAbs : TrueType {}; } // namespace detail