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>2013-09-08 10:05:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-08 10:05:42 +0400
commit3527d2fb27a62586894270df3c0b99cd3d377646 (patch)
treed18b9a06481b14b4c0a0e22a9b6d2f19c4ecf822 /source/blender/bmesh/operators/bmo_fill_grid.c
parent385cbb657dbf001dfb0aa47cf15f9c5cb291b325 (diff)
code cleanup: quiet warnings
Diffstat (limited to 'source/blender/bmesh/operators/bmo_fill_grid.c')
-rw-r--r--source/blender/bmesh/operators/bmo_fill_grid.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_fill_grid.c b/source/blender/bmesh/operators/bmo_fill_grid.c
index 350f2797bfb..a4b1237bc5d 100644
--- a/source/blender/bmesh/operators/bmo_fill_grid.c
+++ b/source/blender/bmesh/operators/bmo_fill_grid.c
@@ -568,7 +568,7 @@ static void bm_grid_fill(BMesh *bm,
static bool bm_edge_test_cb(BMEdge *e, void *bm_v)
{
- return BMO_elem_flag_test((BMesh *)bm_v, e, EDGE_MARK);
+ return BMO_elem_flag_test_bool((BMesh *)bm_v, e, EDGE_MARK);
}
static bool bm_edge_test_rail_cb(BMEdge *e, void *UNUSED(bm_v))
@@ -686,6 +686,8 @@ void bmo_grid_fill_exec(BMesh *bm, BMOperator *op)
mat_nr, use_smooth, use_interp_simple);
change = true;
+
+
cleanup:
BM_mesh_edgeloops_free(&eloops);
BM_mesh_edgeloops_free(&eloops_rail);