| Index: third_party/protobuf/src/google/protobuf/stubs/type_traits.h
|
| diff --git a/third_party/protobuf/src/google/protobuf/stubs/type_traits.h b/third_party/protobuf/src/google/protobuf/stubs/type_traits.h
|
| index 0d8127e504d4b16b146db499faa3c96f1686fb74..3ab5ea7d4eab50da566e855c729ae3d9b447c6ac 100644
|
| --- a/third_party/protobuf/src/google/protobuf/stubs/type_traits.h
|
| +++ b/third_party/protobuf/src/google/protobuf/stubs/type_traits.h
|
| @@ -139,7 +139,7 @@ template<> struct is_integral<int> : true_type { };
|
| template<> struct is_integral<unsigned int> : true_type { };
|
| template<> struct is_integral<long> : true_type { };
|
| template<> struct is_integral<unsigned long> : true_type { };
|
| -#ifdef HAVE_LONG_LONG
|
| +#if defined(HAVE_LONG_LONG) || defined(_MSC_VER)
|
| template<> struct is_integral<long long> : true_type { };
|
| template<> struct is_integral<unsigned long long> : true_type { };
|
| #endif
|
|
|