Material: remove several unreferenced variables

This commit is contained in:
wmayer
2023-11-02 12:37:31 +01:00
committed by wwmayer
parent ec0d9774fd
commit cbf02165d6
4 changed files with 6 additions and 6 deletions

View File

@@ -114,7 +114,7 @@ std::shared_ptr<Material> MaterialManager::getMaterial(const QString& uuid) cons
try {
return _materialMap->at(uuid);
}
catch (std::out_of_range& e) {
catch (std::out_of_range&) {
throw MaterialNotFound();
}
}