From 2b618b0f2dad08cce7d4d915667e0b0eb0f62ca0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Aug 2019 15:01:41 +1000 Subject: Cleanup: unused warning --- source/blender/editors/mesh/editmesh_select.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source') diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index 2273c3fffcf..34383f2ab83 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -217,8 +217,8 @@ struct EDBMSplitEdgeData { }; static bool edbm_vert_pair_share_best_splittable_face_cb(BMFace *f, - BMLoop *l_a, - BMLoop *l_b, + BMLoop *UNUSED(l_a), + BMLoop *UNUSED(l_b), void *userdata) { struct EDBMSplitBestFaceData *data = userdata; @@ -255,7 +255,7 @@ static bool edbm_vert_pair_share_best_splittable_face_cb(BMFace *f, } /* find the best splittable face between the two vertices. */ -static bool edbm_vert_pair_share_splittable_face_cb(BMFace *f, +static bool edbm_vert_pair_share_splittable_face_cb(BMFace *UNUSED(f), BMLoop *l_a, BMLoop *l_b, void *userdata) -- cgit v1.2.3