1
0

logger: Initialize members with default vals

Dieser Commit ist enthalten in:
2023-01-19 12:17:52 +01:00
Ursprung 24121a1618
Commit 7c086e0d78

Datei anzeigen

@@ -7,8 +7,8 @@ class Logger
private: private:
class LogEntry class LogEntry
{ {
bool headerSent; bool headerSent = false;
std::ostream *out; std::ostream *out = nullptr;
std::string prefix; std::string prefix;
public: public: