logger: Initialize members with default vals

这个提交包含在:
Albert S. 2023-01-19 12:17:52 +01:00
父节点 24121a1618
当前提交 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: