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>2012-04-17 09:09:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-17 09:09:37 +0400
commit348622360752916f9b776597e846cd2af260cdb9 (patch)
tree11e989631d832d6674fbd5c7cb188469b4cded90 /source/blender/editors
parent195d6c1b1a363bb30b6efaf9c274cc45edaa6f9a (diff)
code cleanup: remove/comment some unused code.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/editmesh_bvh.c13
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c4
-rw-r--r--source/blender/editors/sound/sound_ops.c3
3 files changed, 3 insertions, 17 deletions
diff --git a/source/blender/editors/mesh/editmesh_bvh.c b/source/blender/editors/mesh/editmesh_bvh.c
index f9c673010f3..c1b694d5e2d 100644
--- a/source/blender/editors/mesh/editmesh_bvh.c
+++ b/source/blender/editors/mesh/editmesh_bvh.c
@@ -305,19 +305,6 @@ BMVert *BMBVH_FindClosestVert(BMBVHTree *tree, float *co, float maxdist)
return NULL;
}
-typedef struct walklist {
- BMVert *v;
- int valence;
- int depth;
- float w, r;
- int totwalked;
-
- /* state data */
- BMVert *lastv;
- BMLoop *curl, *firstl;
- BMEdge *cure;
-} walklist;
-
/* UNUSED */
#if 0
static short winding(float *v1, float *v2, float *v3)
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index b8ab538b60e..2af931372bb 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -2051,8 +2051,8 @@ void MESH_OT_remove_doubles(wmOperatorType *ot)
/************************ Vertex Path Operator *************************/
typedef struct PathNode {
- int u;
- int visited;
+ /* int u; */ /* UNUSED */
+ /* int visited; */ /* UNUSED */
ListBase edges;
} PathNode;
diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c
index f7598045f81..b50c3f11534 100644
--- a/source/blender/editors/sound/sound_ops.c
+++ b/source/blender/editors/sound/sound_ops.c
@@ -283,8 +283,7 @@ static int sound_bake_animation_exec(bContext *C, wmOperator *UNUSED(op))
sound_update_animation_flags_exec(C, NULL);
- for (cfra = scene->r.sfra > 0 ? scene->r.sfra - 1 : 0; cfra <= scene->r.efra + 1; cfra++)
- {
+ for (cfra = (scene->r.sfra > 0) ? (scene->r.sfra - 1) : 0; cfra <= scene->r.efra + 1; cfra++) {
scene->r.cfra = cfra;
scene_update_for_newframe(bmain, scene, scene->lay);
}