[Bf-blender-cvs] [26f4ce4a769] master: Collada: Remove unused vector of flaot[4][4] values

Sergey Sharybin noreply at git.blender.org
Tue Feb 27 11:16:33 CET 2018


Commit: 26f4ce4a769b142446def40f53ce22d8b30c617c
Author: Sergey Sharybin
Date:   Tue Feb 27 11:14:55 2018 +0100
Branches: master
https://developer.blender.org/rB26f4ce4a769b142446def40f53ce22d8b30c617c

Collada: Remove unused vector of flaot[4][4] values

Was in fact causing issues on macOS, something to do with
a destructor.

===================================================================

M	source/blender/collada/AnimationExporter.cpp

===================================================================

diff --git a/source/blender/collada/AnimationExporter.cpp b/source/blender/collada/AnimationExporter.cpp
index 54da8b98138..3eefe84b214 100644
--- a/source/blender/collada/AnimationExporter.cpp
+++ b/source/blender/collada/AnimationExporter.cpp
@@ -155,7 +155,6 @@ void AnimationExporter::export_keyframed_animation_set(Object *ob)
 	if (this->export_settings->export_transformation_type == BC_TRANSFORMATION_TYPE_MATRIX) {
 
 		std::vector<float> ctimes;
-		std::vector<float[4][4]> values;
 		find_keyframes(ob, ctimes);
 		if (ctimes.size() > 0)
 			export_sampled_matrix_animation(ob, ctimes);



More information about the Bf-blender-cvs mailing list