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-03-22 05:35:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-22 05:35:13 +0400
commitb6c2f9ddabd54530906661150640daa31b50e1e9 (patch)
treebe881cc0d8d7f6060abf4f3d2ecf476dd356cc3a /source/blender/editors/mesh/meshtools.c
parentb56d2f97662e0277076b7a7fd1f7a19380dc9f63 (diff)
style cleanup: enforce macros using a semicolon.
Diffstat (limited to 'source/blender/editors/mesh/meshtools.c')
-rw-r--r--source/blender/editors/mesh/meshtools.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c
index 44d923a009b..919e2b03583 100644
--- a/source/blender/editors/mesh/meshtools.c
+++ b/source/blender/editors/mesh/meshtools.c
@@ -801,8 +801,9 @@ intptr_t mesh_octree_table(Object *ob, BMEditMesh *em, float *co, char mode)
BMIter iter;
BMVert *eve;
- BM_ITER(eve, &iter, em->bm, BM_VERTS_OF_MESH, NULL)
- DO_MINMAX(eve->co, min, max)
+ BM_ITER(eve, &iter, em->bm, BM_VERTS_OF_MESH, NULL) {
+ DO_MINMAX(eve->co, min, max);
+ }
}
else {
MVert *mvert;