Fix MSVC warning C26493

Relating to C++ Core Guidelines type.4, but returning a value at all is
inappropriate.
This commit is contained in:
Oliver Hamlet
2022-02-07 20:25:15 +00:00
parent 279ac1ab67
commit c57f58775c
+1 -1
View File
@@ -51,7 +51,7 @@ unsigned int mapGameId(GameType gameType) {
case GameType::fo4vr:
return LIBLO_GAME_FO4VR;
default:
return (unsigned int)-1;
throw std::logic_error("Unexpected game type");
}
}