Streams are highly discouraged except for logging according to

Google style guidelines "readability/streams"
This commit is contained in:
Micke Prag 2012-12-05 12:58:17 +01:00
parent 52faa7a36d
commit ce24cabff9
2 changed files with 1 additions and 3 deletions

View file

@ -23,7 +23,7 @@
#include <time.h> #include <time.h>
#ifdef _WINDOWS #ifdef _WINDOWS
#include <fstream> #include <fstream> // NOLINT(readability/streams)
#endif #endif
#include <string> #include <string>
#include "common/Strings.h" #include "common/Strings.h"

View file

@ -5,8 +5,6 @@
// //
// //
#include <Windows.h> #include <Windows.h>
#include <fstream>
#include <iostream>
#include <sstream> #include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>