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-04-06 13:21:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-06 13:21:19 +0400
commit58064bdfc44c4cd0f23d4f65491c86300ce69020 (patch)
treed7b0c1d24b89292d692cd39f7b60e65f4e909b66 /source/blender/bmesh/operators/bmo_create.c
parent743a9c2e1dcdcca593c18157f5afd451fa5e7ed5 (diff)
code cleanup: add doxygen headers to bmesh operator files, also add own include so definitions dont get out of sync.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_create.c')
-rw-r--r--source/blender/bmesh/operators/bmo_create.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_create.c b/source/blender/bmesh/operators/bmo_create.c
index 876d440a0fa..f5e37f96558 100644
--- a/source/blender/bmesh/operators/bmo_create.c
+++ b/source/blender/bmesh/operators/bmo_create.c
@@ -20,6 +20,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/bmesh/operators/bmo_create.c
+ * \ingroup bmesh
+ */
+
#include "MEM_guardedalloc.h"
#include "BLI_heap.h"
@@ -31,6 +35,7 @@
#include "bmesh.h"
+#include "intern/bmesh_operators_private.h" /* own include */
#define EDGE_MARK 1
#define EDGE_VIS 2