|
@@ -97,6 +97,15 @@
|
|
|
|
|
|
// ===================================================================
|
|
|
// from google3/base/port.h
|
|
|
+
|
|
|
+#if (defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L || \
|
|
|
+ (defined(_MSC_VER) && _MSC_VER >= 1900))
|
|
|
+// Define this to 1 if the code is compiled in C++11 mode; leave it
|
|
|
+// undefined otherwise. Do NOT define it to 0 -- that causes
|
|
|
+// '#ifdef LANG_CXX11' to behave differently from '#if LANG_CXX11'.
|
|
|
+#define LANG_CXX11 1
|
|
|
+#endif
|
|
|
+
|
|
|
namespace google {
|
|
|
namespace protobuf {
|
|
|
|