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/bmesh/intern/bmesh_private.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_private.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/bmesh/intern/bmesh_private.h b/source/blender/bmesh/intern/bmesh_private.h
index f6c6cda845b..3ed58c506ec 100644
--- a/source/blender/bmesh/intern/bmesh_private.h
+++ b/source/blender/bmesh/intern/bmesh_private.h
@@ -25,6 +25,9 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#ifndef __BMESH_PRIVATE_H__
+#define __BMESH_PRIVATE_H__
+
/** \file blender/bmesh/intern/bmesh_private.h
* \ingroup bmesh
*
@@ -33,9 +36,6 @@
* parts of the bmesh internals.
*/
-#ifndef BMESH_PRIVATE_H
-#define BMESH_PRIVATE_H
-
struct Link;
struct BMLoop;
@@ -59,7 +59,7 @@ int bmesh_check_element(BMesh *bm, void *element, const char htype);
int bmesh_radial_length(struct BMLoop *l);
int bmesh_disk_count(BMVert *v);
-/*internal selection flushing*/
+/* internal selection flushing */
void bmesh_selectmode_flush(struct BMesh *bm);
/*internal filter API*/
@@ -91,8 +91,8 @@ void bmesh_flip_normal(struct BMesh *bm, struct BMFace *f);
BMEdge *bmesh_disk_next(BMEdge *e, BMVert *v);
BMEdge *bmesh_disk_prev(BMEdge *e, BMVert *v);
-/*include the rest of our private declarations*/
+/* include the rest of our private declarations */
#include "bmesh_structure.h"
#include "bmesh_operators_private.h"
-#endif
+#endif /* __BMESH_PRIVATE_H__ */