logger: Initialize members with default vals

This commit is contained in:
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: