aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-09-17 21:00:11 +0000
committerxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-09-17 21:00:11 +0000
commit172019c40bf548908ab09bfd276074c929d48415 (patch)
tree1ca21268d0bf1cc802910fe7cbc39ed381209f2d
parentd8331268223ede73969aa32073da2ed6f2e288d9 (diff)
downloadprotobuf-172019c40bf548908ab09bfd276074c929d48415.tar.gz
protobuf-172019c40bf548908ab09bfd276074c929d48415.tar.bz2
protobuf-172019c40bf548908ab09bfd276074c929d48415.zip
Add missing #include of <algorithm> for min/max on VS2013
-rw-r--r--src/google/protobuf/io/zero_copy_stream_impl_lite.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/google/protobuf/io/zero_copy_stream_impl_lite.cc b/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
index f552e1f8..b3a71ce3 100644
--- a/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
+++ b/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 {