Browse Source

Add missing #include of <algorithm> for min/max on VS2013

xiaofeng@google.com 12 years ago
parent
commit
172019c40b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/google/protobuf/io/zero_copy_stream_impl_lite.cc

+ 2 - 0
src/google/protobuf/io/zero_copy_stream_impl_lite.cc

@@ -36,6 +36,8 @@
 #include <google/protobuf/stubs/common.h>
 #include <google/protobuf/stubs/stl_util.h>
 
+#include <algorithm>
+
 namespace google {
 namespace protobuf {
 namespace io {