[Bf-blender-cvs] [ff8d163] master: Cleanup: let's try to avoid too much indirect header imports, makes things harder when some cope changes...

Bastien Montagne noreply at git.blender.org
Sun Aug 21 13:24:16 CEST 2016


Commit: ff8d16399c8a72b4430a206c0f907aaf1c6c0f89
Author: Bastien Montagne
Date:   Sun Aug 21 13:20:49 2016 +0200
Branches: master
https://developer.blender.org/rBff8d16399c8a72b4430a206c0f907aaf1c6c0f89

Cleanup: let's try to avoid too much indirect header imports, makes things harder when some cope changes...

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

M	source/blender/alembic/intern/abc_exporter.cc
M	source/blender/alembic/intern/abc_points.cc

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

diff --git a/source/blender/alembic/intern/abc_exporter.cc b/source/blender/alembic/intern/abc_exporter.cc
index f71d78b..2e9f429 100644
--- a/source/blender/alembic/intern/abc_exporter.cc
+++ b/source/blender/alembic/intern/abc_exporter.cc
@@ -44,6 +44,7 @@ extern "C" {
 #include "DNA_curve_types.h"
 #include "DNA_mesh_types.h"
 #include "DNA_modifier_types.h"
+#include "DNA_object_types.h"
 #include "DNA_scene_types.h"
 #include "DNA_space_types.h"  /* for FILE_MAX */
 
diff --git a/source/blender/alembic/intern/abc_points.cc b/source/blender/alembic/intern/abc_points.cc
index 758d482..322bb90 100644
--- a/source/blender/alembic/intern/abc_points.cc
+++ b/source/blender/alembic/intern/abc_points.cc
@@ -30,6 +30,7 @@
 
 extern "C" {
 #include "DNA_mesh_types.h"
+#include "DNA_object_types.h"
 
 #include "BKE_lattice.h"
 #include "BKE_mesh.h"




More information about the Bf-blender-cvs mailing list