aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Adam Michalik <xyzzyz@google.com>2016-03-30 12:54:40 -0700
committerGravatar Adam Michalik <xyzzyz@google.com>2016-03-30 12:54:40 -0700
commit955841e620e2a70532c9ba6312e41676f1c92e6c (patch)
tree587efe4f77ae14b4a0c278fcb1a7b10852b2b4b2
parenta25e9964b126a79e8a99bced2207ddca22d6a1a9 (diff)
Replace #include <iostream> with #include <ostream>
iostream is not actually necessary here, and it introduces unnecessary static initializers.
-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 {