Explorar el Código

Merge pull request #2910 from matt77hias/master

Removed name of unreferenced local variable in catch block
Turo Lamminen hace 5 años
padre
commit
160c47acb3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      code/FBX/FBXConverter.cpp

+ 1 - 1
code/FBX/FBXConverter.cpp

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