Add fatal in switch statement

This commit is contained in:
BendedWills
2026-03-06 19:08:57 -06:00
parent 569731dbb5
commit 870bc0eb29

View File

@@ -59,6 +59,11 @@ namespace mce {
color = Color::RED; color = Color::RED;
} }
break; break;
case Severity::FATAL: {
severity = "FATAL";
color = Color::RED;
}
break;
} }
const std::string file = e.location.file_name(); const std::string file = e.location.file_name();