clang-tidy: Use default member initialization

This commit is contained in:
Regina Pfeifer
2018-11-21 23:17:54 +01:00
parent 32cb564bea
commit b2aa3aedea
62 changed files with 152 additions and 347 deletions
+3 -3
View File
@@ -54,11 +54,11 @@ public:
void SetLog(std::ostream* log, const char* prefix);
protected:
std::ostream* Log;
const char* Prefix;
std::ostream* Log = nullptr;
const char* Prefix = nullptr;
std::string Line;
char Separator;
char LineEnd;
char LineEnd = '\0';
bool IgnoreCR;
bool ProcessChunk(const char* data, int length) override;