| Index: base/callback_internal.h
|
| diff --git a/base/callback_internal.h b/base/callback_internal.h
|
| index 3e8ee82e4f246c5a875ba97d5ae219097e745f19..2763c52a9e81816ec036e474f90959c79ca13260 100644
|
| --- a/base/callback_internal.h
|
| +++ b/base/callback_internal.h
|
| @@ -111,7 +111,7 @@ template <typename T> struct IsMoveOnlyType {
|
| static NoType Test(...);
|
|
|
| static const bool value = sizeof((Test<T>(0))) == sizeof(YesType) &&
|
| - !is_const<T>::value;
|
| + !std::is_const<T>::value;
|
| };
|
|
|
| // Specialization of IsMoveOnlyType so that std::unique_ptr is still considered
|
|
|