1
0
Derivar 0

logger: Initialize members with default vals

Este cometimento está contido em:
Albert S. 2023-01-19 12:17:52 +01:00
ascendente 24121a1618
cometimento 7c086e0d78
1 ficheiros modificados com 2 adições e 2 eliminações

Ver ficheiro

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