소스 검색

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