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:
authorHans Goudey <h.goudey@me.com>2022-03-04 15:59:07 +0300
committerHans Goudey <h.goudey@me.com>2022-03-04 15:59:07 +0300
commit1763ffa0be4806949a2644a4a520647c9a1eefbd (patch)
tree2ddbc103545147d18f5dcfc283437e63d3e5707d /source/blender/editors/uvedit
parent5eaeb9bd0d4d21ab89f5519bba716c5aedc715fc (diff)
Cleanup: Unused variable warnings
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_select.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/uvedit/uvedit_select.c b/source/blender/editors/uvedit/uvedit_select.c
index ca66981cd3a..578e05b2c03 100644
--- a/source/blender/editors/uvedit/uvedit_select.c
+++ b/source/blender/editors/uvedit/uvedit_select.c
@@ -1229,6 +1229,7 @@ void ED_uvedit_selectmode_flush(Scene *scene, BMEditMesh *em)
const int cd_loop_uv_offset = CustomData_get_offset(&em->bm->ldata, CD_MLOOPUV);
BLI_assert((ts->uv_flag & UV_SYNC_SELECTION) == 0);
+ UNUSED_VARS_NDEBUG(ts);
/* Vertex Mode only. */
if (ts->uv_selectmode & UV_SELECT_VERTEX) {
@@ -1295,6 +1296,7 @@ void uvedit_deselect_flush(Scene *scene, BMEditMesh *em)
const int cd_loop_uv_offset = CustomData_get_offset(&em->bm->ldata, CD_MLOOPUV);
BLI_assert((ts->uv_flag & UV_SYNC_SELECTION) == 0);
+ UNUSED_VARS_NDEBUG(ts);
BMFace *efa;
BMLoop *l;