Index: base/callback_internal.h |
diff --git a/base/callback_internal.h b/base/callback_internal.h |
index 9d7761c409781ac613340b26cca474cea5c148a2..b85973d3815470aebf22e9649965ed29222a2524 100644 |
--- a/base/callback_internal.h |
+++ b/base/callback_internal.h |
@@ -77,7 +77,7 @@ template <typename T> struct IsMoveOnlyType { |
template <typename U> |
static NoType Test(...); |
- static const bool value = sizeof(Test<T>(0)) == sizeof(YesType) && |
+ static const bool value = sizeof((Test<T>(0))) == sizeof(YesType) && |
!is_const<T>::value; |
}; |