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:
Benjamin Barenblat 2015-08-15 15:39:45 -04:00
parent cebf245504
commit 7cd5a653ff
No known key found for this signature in database
GPG Key ID: 9E730149EB91C53B

View File

@ -66,8 +66,9 @@ const char* GetLogClassName(Class log_class) {
ALL_LOG_CLASSES() ALL_LOG_CLASSES()
#undef CLS #undef CLS
#undef SUB #undef SUB
case Class::Count:
UNREACHABLE();
} }
return "Unknown";
} }
const char* GetLevelName(Level log_level) { const char* GetLevelName(Level log_level) {