MSVC: fix warnings about unused variable

This commit is contained in:
wmayer
2023-11-21 19:10:03 +01:00
committed by wwmayer
parent fb770778d3
commit 624b5a396a
9 changed files with 9 additions and 9 deletions

View File

@@ -123,7 +123,7 @@ std::shared_ptr<Model> ModelLibrary::getModelByPath(const QString& path) const
std::shared_ptr<Model> model = _modelPathMap->at(filePath);
return model;
}
catch (std::out_of_range& e) {
catch (std::out_of_range&) {
throw ModelNotFound();
}
}