Material: remove several unreferenced variables

This commit is contained in:
wmayer
2023-10-11 11:17:57 +02:00
committed by wwmayer
parent 14f2653c40
commit a6ff03d54b
4 changed files with 6 additions and 6 deletions

View File

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