Removed name of unreferenced local variable in catch block

pull/2910/head
Matthias Moulin 2020-01-17 16:07:50 +01:00 committed by GitHub
parent 3e1abd1039
commit cc40963e1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1564,7 +1564,7 @@ namespace Assimp {
bone_map.clear();
}
catch (std::exception&e) {
catch (std::exception&) {
std::for_each(bones.begin(), bones.end(), Util::delete_fun<aiBone>());
throw;
}