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:
authorCampbell Barton <ideasman42@gmail.com>2011-05-13 17:17:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-13 17:17:30 +0400
commit068c62701375e51445a768ab69b74802338f57c1 (patch)
tree2aca17f045376bde24057f70e8c12fc37ab74b66 /source/blender/editors/util
parent73e2b88f6296c83aaff2b47ed9e1d5debbd2e9df (diff)
remove unused vars
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/crazyspace.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/util/crazyspace.c b/source/blender/editors/util/crazyspace.c
index 7a661a94c04..6d524a59b40 100644
--- a/source/blender/editors/util/crazyspace.c
+++ b/source/blender/editors/util/crazyspace.c
@@ -143,9 +143,8 @@ void crazyspace_set_quats_editmesh(BMEditMesh *em, float *origcos, float *mapped
{
BMVert *v;
BMIter iter, liter;
- BMEdge *e;
BMLoop *l;
- float *v1, *v2, *v3, *v4, *co1, *co2, *co3, *co4;
+ float *v1, *v2, *v3, *co1, *co2, *co3;
int *vert_table = MEM_callocN(sizeof(int)*em->bm->totvert, "vert_table");
int index = 0;