mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 05:55:13 +01:00
Merge pull request #5006 from FearlessTobi/port-3123
Port yuzu-emu/yuzu#3123: "common/logging: Silence no return value warnings"
This commit is contained in:
commit
85f2e577b5
@ -253,8 +253,10 @@ const char* GetLogClassName(Class log_class) {
|
|||||||
#undef CLS
|
#undef CLS
|
||||||
#undef SUB
|
#undef SUB
|
||||||
case Class::Count:
|
case Class::Count:
|
||||||
UNREACHABLE();
|
break;
|
||||||
}
|
}
|
||||||
|
UNREACHABLE();
|
||||||
|
return "Invalid";
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* GetLevelName(Level log_level) {
|
const char* GetLevelName(Level log_level) {
|
||||||
@ -269,9 +271,11 @@ const char* GetLevelName(Level log_level) {
|
|||||||
LVL(Error);
|
LVL(Error);
|
||||||
LVL(Critical);
|
LVL(Critical);
|
||||||
case Level::Count:
|
case Level::Count:
|
||||||
UNREACHABLE();
|
break;
|
||||||
}
|
}
|
||||||
#undef LVL
|
#undef LVL
|
||||||
|
UNREACHABLE();
|
||||||
|
return "Invalid";
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetGlobalFilter(const Filter& filter) {
|
void SetGlobalFilter(const Filter& filter) {
|
||||||
|
Loading…
Reference in New Issue
Block a user