Warning fixes.

This commit is contained in:
dg
2023-07-07 21:51:24 +00:00
parent 1330d56cdd
commit dae9537472
23 changed files with 40 additions and 37 deletions

View File

@@ -14,9 +14,10 @@ static std::string supportStatus(SupportStatus status)
case SupportStatus::UNICORN:
return "🦄";
}
return "";
case SupportStatus::UNSUPPORTED:
return "";
}
}
int main(int argc, const char* argv[])