[Bf-blender-cvs] [2b618b0f2da] master: Cleanup: unused warning

Campbell Barton noreply at git.blender.org
Tue Aug 27 07:08:30 CEST 2019


Commit: 2b618b0f2dad08cce7d4d915667e0b0eb0f62ca0
Author: Campbell Barton
Date:   Tue Aug 27 15:01:41 2019 +1000
Branches: master
https://developer.blender.org/rB2b618b0f2dad08cce7d4d915667e0b0eb0f62ca0

Cleanup: unused warning

===================================================================

M	source/blender/editors/mesh/editmesh_select.c

===================================================================

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)



More information about the Bf-blender-cvs mailing list