Procházet zdrojové kódy

Replace #include <iostream> with #include <ostream>

iostream is not actually necessary here, and it introduces unnecessary
static initializers.
Adam Michalik před 9 roky
rodič
revize
955841e620
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 {