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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-08-27 08:01:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-27 08:01:41 +0300
commit2b618b0f2dad08cce7d4d915667e0b0eb0f62ca0 (patch)
tree591f1f4809a2b0b270fd8d7008e6223b0e987f96 /source
parente57b14feae9b4c206de7d33f53342210c01c8278 (diff)
Cleanup: unused warning
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c6
1 files changed, 3 insertions, 3 deletions
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)