aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/plugin.cc
diff options
context:
space:
mode:
authorGravatar Jisi Liu <jisi.liu@gmail.com>2017-08-11 12:08:00 -0700
committerGravatar Jisi Liu <jisi.liu@gmail.com>2017-08-11 12:08:00 -0700
commit564f02c91ec0e983806762de4b842a762e21bb47 (patch)
tree52a4a64303c8426f487f08624e5059b977b078cc /src/google/protobuf/compiler/plugin.cc
parent7afa796bb914c911cc3d40aeeba1ce63b2f83f99 (diff)
Make win32_io only for MSVC
This excludes cygwin and mingw from using the self implemented functions.
Diffstat (limited to 'src/google/protobuf/compiler/plugin.cc')
-rw-r--r--src/google/protobuf/compiler/plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/plugin.cc b/src/google/protobuf/compiler/plugin.cc
index fcb08551..cb5e37bb 100644
--- a/src/google/protobuf/compiler/plugin.cc
+++ b/src/google/protobuf/compiler/plugin.cc
@@ -49,7 +49,7 @@
#include <google/protobuf/descriptor.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
-#if defined(_WIN32)
+#if defined(_MSC_VER)
// DO NOT include <io.h>, instead create functions in io_win32.{h,cc} and import
// them like we do below.
using google::protobuf::internal::win32::setmode;