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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-10-03 23:20:22 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-10-03 23:20:22 +0300
commit39e60c306751af894b30c25c43f0817f93bc5ee6 (patch)
tree582ef5a11dff991c6d0cf519b4a42354e5a2f1e0 /source/blender/editors/transform/transform.c
parentea631a1e7aedaca152f2f3aac57b82b4462a9b8d (diff)
Cleanup/fixes compilation warnings.
Mainly, shadowing variables and unused parameters.
Diffstat (limited to 'source/blender/editors/transform/transform.c')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 987415520b2..2ce53a6e933 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -4294,7 +4294,7 @@ static void initNormalRotation(TransInfo *t)
}
/* Works by getting custom normal from clnor_data, transform, then store */
-static void applyNormalRotation(TransInfo *t, const int mval[2])
+static void applyNormalRotation(TransInfo *t, const int UNUSED(mval[2]))
{
BMEditMesh *em = BKE_editmesh_from_object(t->obedit);
BMesh *bm = em->bm;