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:
authorSybren A. Stüvel <sybren@blender.org>2020-08-31 18:37:48 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-31 18:37:48 +0300
commit3014b5efc87c48889b8ee255c8f54ee1ef8b2e7f (patch)
tree0783368090b37d877be5f0cf5bd60ee0cc602daf /source/blender/editors/transform
parentf5866f484f0c0c6c92f70701f843617aa6ba1f59 (diff)
Fix unused parameter warning in `snap_increment_apply_ex()`
No functional changes.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_snap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_snap.c b/source/blender/editors/transform/transform_snap.c
index 96b7c85713b..1813acadb9e 100644
--- a/source/blender/editors/transform/transform_snap.c
+++ b/source/blender/editors/transform/transform_snap.c
@@ -1515,7 +1515,7 @@ bool transform_snap_grid(TransInfo *t, float *val)
return true;
}
-static void snap_increment_apply_ex(TransInfo *t,
+static void snap_increment_apply_ex(TransInfo *UNUSED(t),
const int max_index,
const float increment_val,
const float aspect[3],