mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 08:25:07 +01:00
Handle invalid Log::Class
Add a case of `Log::Class::Count` to the switch statement that dispatches on `Log::Class`. The case simply calls the `UNREACHABLE` macro.
This commit is contained in:
parent
cebf245504
commit
7cd5a653ff
@ -66,8 +66,9 @@ const char* GetLogClassName(Class log_class) {
|
||||
ALL_LOG_CLASSES()
|
||||
#undef CLS
|
||||
#undef SUB
|
||||
case Class::Count:
|
||||
UNREACHABLE();
|
||||
}
|
||||
return "Unknown";
|
||||
}
|
||||
|
||||
const char* GetLevelName(Level log_level) {
|
||||
|
Loading…
Reference in New Issue
Block a user