Fix errors

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-08-21 15:34:21 +01:00
parent eab74be499
commit 9d8243200f

View File

@@ -109,8 +109,10 @@ severities::to_string(Severity severity)
case kFatal:
return "fatal";
default:
assert(false);
UNREACHABLE("Unexpected severity value!");
}
return "";
}
Journal::Sink::Sink(Severity thresh, bool console)
: thresh_(thresh), m_console(console)