logger: Initialize members with default vals

このコミットが含まれているのは:
Albert S. 2023-01-19 12:17:52 +01:00
コミット 7c086e0d78
1個のファイルの変更2行の追加2行の削除

ファイルの表示

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