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-01-13 07:53:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-13 07:53:55 +0300
commit8227b3d463955d887a987fe546d8eefa2757a982 (patch)
tree47be10b02d3418b579dc95ca796f2d7c596571e9 /source/blender/editors/mesh/editmesh_tools.c
parent57ce3072d191480ab8bdfcb1f4b841452819467a (diff)
remove/comment unused vars
also removed unnecessary NULL checks (where the pointer was used later without checking).
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 0fde8d75990..3e359101f3a 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -5685,7 +5685,7 @@ static int collapseEdges(EditMesh *em)
CollectedEdge *curredge;
Collection *edgecollection;
- int totedges, groupcount, mergecount,vcount;
+ int totedges, mergecount,vcount /*, groupcount*/;
float avgcount[3];
allcollections.first = 0;
@@ -5694,7 +5694,7 @@ static int collapseEdges(EditMesh *em)
mergecount = 0;
build_edgecollection(em, &allcollections);
- groupcount = BLI_countlist(&allcollections);
+ /*groupcount = BLI_countlist(&allcollections);*/ /*UNUSED*/
for(edgecollection = allcollections.first; edgecollection; edgecollection = edgecollection->next){