浏览代码

Merge pull request #2910 from matt77hias/master

Removed name of unreferenced local variable in catch block
Turo Lamminen 5 年之前
父节点
当前提交
160c47acb3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/FBX/FBXConverter.cpp

+ 1 - 1
code/FBX/FBXConverter.cpp

@@ -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;
             }