Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/io/collada/BCAnimationSampler.cpp')
-rw-r--r--source/blender/io/collada/BCAnimationSampler.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/io/collada/BCAnimationSampler.cpp b/source/blender/io/collada/BCAnimationSampler.cpp
index e6996e95a5b..0c19ce9a4c7 100644
--- a/source/blender/io/collada/BCAnimationSampler.cpp
+++ b/source/blender/io/collada/BCAnimationSampler.cpp
@@ -17,28 +17,28 @@
* All rights reserved.
*/
-#include <vector>
-#include <map>
#include <algorithm> // std::find
+#include <map>
+#include <vector>
-#include "ExportSettings.h"
#include "BCAnimationCurve.h"
#include "BCAnimationSampler.h"
-#include "collada_utils.h"
#include "BCMath.h"
+#include "ExportSettings.h"
+#include "collada_utils.h"
extern "C" {
#include "BKE_action.h"
#include "BKE_constraint.h"
#include "BKE_key.h"
-#include "BKE_main.h"
#include "BKE_lib_id.h"
+#include "BKE_main.h"
#include "BKE_material.h"
#include "BLI_listbase.h"
#include "DNA_anim_types.h"
-#include "DNA_scene_types.h"
-#include "DNA_key_types.h"
#include "DNA_constraint_types.h"
+#include "DNA_key_types.h"
+#include "DNA_scene_types.h"
#include "ED_object.h"
}