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 3ab5ea7d4eab50da566e855c729ae3d9b447c6ac..0d8127e504d4b16b146db499faa3c96f1686fb74 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 { }; |
-#if defined(HAVE_LONG_LONG) || defined(_MSC_VER) |
+#ifdef HAVE_LONG_LONG |
template<> struct is_integral<long long> : true_type { }; |
template<> struct is_integral<unsigned long long> : true_type { }; |
#endif |