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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-28 20:47:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-28 20:47:12 +0400
commitdf0f0c63d32b3819bab625f72d62e1fcf6d5ced5 (patch)
treefdece62e1b06e2b7701ef0001d0440dfcba92ad4 /source/blender/bmesh/bmesh.h
parent22abc63f676dc7681ee8f734cbc96a7279172d24 (diff)
bmesh: re-arrange headers
Diffstat (limited to 'source/blender/bmesh/bmesh.h')
-rw-r--r--source/blender/bmesh/bmesh.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/source/blender/bmesh/bmesh.h b/source/blender/bmesh/bmesh.h
index ce3d1315f91..9537cd7fe4f 100644
--- a/source/blender/bmesh/bmesh.h
+++ b/source/blender/bmesh/bmesh.h
@@ -460,14 +460,17 @@ void bmesh_edit_end(BMesh *bm, int flag);
#define BM_NGON_MAX 100000
/* include the rest of the API */
-#include "bmesh_marking.h"
#include "bmesh_operator_api.h"
-#include "bmesh_operators.h"
#include "bmesh_error.h"
-#include "bmesh_queries.h"
-#include "bmesh_interp.h"
-#include "bmesh_iterators.h"
-#include "bmesh_walkers.h"
+
+#include "intern/bmesh_interp.h"
+#include "intern/bmesh_iterators.h"
+#include "intern/bmesh_marking.h"
+#include "intern/bmesh_operators.h"
+#include "intern/bmesh_queries.h"
+#include "intern/bmesh_walkers.h"
+#include "intern/bmesh_walkers.h"
+
#include "intern/bmesh_inline.c"
#include "intern/bmesh_operator_api_inline.c"