logger: Initialize members with default vals

Este commit está contenido en:
Albert S. 2023-01-19 12:17:52 +01:00
padre 24121a1618
commit 7c086e0d78
Se han modificado 1 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -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: