aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeng Xiao <xiaofeng@google.com>2016-03-31 13:29:29 -0700
committerFeng Xiao <xiaofeng@google.com>2016-03-31 13:29:29 -0700
commit5c63266ed3808ef4106ba7766cedb516a099b2a5 (patch)
treea2399f0d79270c40ae0be829129dc8d43363584b
parenta16c8a50f0497b9d5e93025ee74e102c327c2a33 (diff)
parent955841e620e2a70532c9ba6312e41676f1c92e6c (diff)
downloadprotobuf-5c63266ed3808ef4106ba7766cedb516a099b2a5.tar.gz
protobuf-5c63266ed3808ef4106ba7766cedb516a099b2a5.tar.bz2
protobuf-5c63266ed3808ef4106ba7766cedb516a099b2a5.zip
Merge pull request #1366 from xyzzyz/int128_ostream
Replace #include <iostream> with #include <ostream> in int128.cc
-rw-r--r--src/google/protobuf/stubs/int128.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/stubs/int128.cc b/src/google/protobuf/stubs/int128.cc
index d80c64f2..3a36b4b1 100644
--- a/src/google/protobuf/stubs/int128.cc
+++ b/src/google/protobuf/stubs/int128.cc
@@ -31,7 +31,7 @@
#include <google/protobuf/stubs/int128.h>
#include <iomanip>
-#include <iostream> // NOLINT(readability/streams)
+#include <ostream> // NOLINT(readability/streams)
#include <sstream>
namespace google {