Index: base/numerics/safe_math.h |
diff --git a/base/numerics/safe_math.h b/base/numerics/safe_math.h |
index cd89b2d52461d9960f99d145bb343aa64c277051..cbf00f0f23d52a55b6b8f1ea2e6fdd5c7ef92dd3 100644 |
--- a/base/numerics/safe_math.h |
+++ b/base/numerics/safe_math.h |
@@ -181,15 +181,15 @@ class CheckedNumeric { |
template <typename Src> |
static CheckedNumeric<T> cast( |
Src u, |
- typename enable_if<std::numeric_limits<Src>::is_specialized, int>::type = |
- 0) { |
+ typename std::enable_if<std::numeric_limits<Src>::is_specialized, |
+ int>::type = 0) { |
return u; |
} |
template <typename Src> |
static CheckedNumeric<T> cast( |
const CheckedNumeric<Src>& u, |
- typename enable_if<!is_same<Src, T>::value, int>::type = 0) { |
+ typename std::enable_if<!is_same<Src, T>::value, int>::type = 0) { |
return u; |
} |