Browse Source

Merge pull request #1366 from xyzzyz/int128_ostream

Replace #include <iostream> with #include <ostream> in int128.cc
Feng Xiao 9 years ago
parent
commit
5c63266ed3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/google/protobuf/stubs/int128.cc

+ 1 - 1
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 {