From 2fb9c8ef125f975596b6ef9c8f021403f8279bdf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 21 Apr 2019 04:40:16 +1000 Subject: Cleanup: add missing macros to clang-format --- source/blender/bmesh/tools/bmesh_bisect_plane.c | 3 +-- source/blender/bmesh/tools/bmesh_region_match.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'source/blender/bmesh/tools') diff --git a/source/blender/bmesh/tools/bmesh_bisect_plane.c b/source/blender/bmesh/tools/bmesh_bisect_plane.c index f314ae6848b..8ae0dfecf55 100644 --- a/source/blender/bmesh/tools/bmesh_bisect_plane.c +++ b/source/blender/bmesh/tools/bmesh_bisect_plane.c @@ -456,8 +456,7 @@ void BM_mesh_bisect_plane(BMesh *bm, /* check if either edge verts are aligned, * if so - tag and push all faces that use it into the stack */ uint j; - BM_ITER_ELEM_INDEX(v, &iter, e, BM_VERTS_OF_EDGE, j) - { + BM_ITER_ELEM_INDEX (v, &iter, e, BM_VERTS_OF_EDGE, j) { if (side[j] == 0) { if (vert_is_center_test(v) == 0) { BMIter itersub; diff --git a/source/blender/bmesh/tools/bmesh_region_match.c b/source/blender/bmesh/tools/bmesh_region_match.c index 6ddbaa6bb2e..8b9a9de3988 100644 --- a/source/blender/bmesh/tools/bmesh_region_match.c +++ b/source/blender/bmesh/tools/bmesh_region_match.c @@ -854,8 +854,7 @@ static BMFace **bm_mesh_region_match_pair( uint i; faces_result = MEM_mallocN(sizeof(*faces_result) * (faces_result_len + 1), __func__); - GHASH_ITER_INDEX(gh_iter, w_dst->faces_uuid, i) - { + GHASH_ITER_INDEX (gh_iter, w_dst->faces_uuid, i) { BMFace *f = BLI_ghashIterator_getKey(&gh_iter); faces_result[i] = f; } -- cgit v1.2.3