Chromium Code Reviews| Index: base/logging.h |
| diff --git a/base/logging.h b/base/logging.h |
| index 7ca018e2279dafcafed6be82d1f08425a1b92eba..1dcb0f71f12ed6b9854524161e7555ea3ac609e1 100644 |
| --- a/base/logging.h |
| +++ b/base/logging.h |
| @@ -642,7 +642,7 @@ inline typename std::enable_if< |
| std::is_enum<T>::value, |
| void>::type |
| MakeCheckOpValueString(std::ostream* os, const T& v) { |
| - (*os) << static_cast<typename base::underlying_type<T>::type>(v); |
| + (*os) << static_cast<typename std::underlying_type<T>::type>(v); |
| } |
| // We need an explicit overload for std::nullptr_t. |