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:
authorJoshua Leung <aligorith@gmail.com>2008-05-11 16:57:01 +0400
committerJoshua Leung <aligorith@gmail.com>2008-05-11 16:57:01 +0400
commit2d96d1189fac31d634d519a6b5d925e5159f221a (patch)
tree007d1432719fdff038f338173e66f8b1a9804d0f /source/blender/src/editface.c
parentb9c66e88ea42a73533dd7cc4beb9e1eca2fe65d0 (diff)
Fix compiler warnings in particle.c and editface.c.
* unitialised/unused vars
Diffstat (limited to 'source/blender/src/editface.c')
-rw-r--r--source/blender/src/editface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c
index e74401cb622..d89af858f21 100644
--- a/source/blender/src/editface.c
+++ b/source/blender/src/editface.c
@@ -151,6 +151,7 @@ int facesel_face_pick(Mesh *me, short *mval, unsigned int *index, short rect)
return 1;
}
+#if 0 // not used
/* returns 0 if not found, otherwise 1 */
static int facesel_edge_pick(Mesh *me, short *mval, unsigned int *index)
{
@@ -175,6 +176,7 @@ static int facesel_edge_pick(Mesh *me, short *mval, unsigned int *index)
return 1;
}
+#endif
/* only operates on the edit object - this is all thats needed at the moment */
static void uv_calc_center_vector(float *result, Object *ob, EditMesh *em)
@@ -958,7 +960,6 @@ int edgetag_shortest_path(EditEdge *source, EditEdge *target)
EditVert *ev;
Heap *heap;
- EdgeHash *ehash;
float *cost;
int a, totvert=0, totedge=0, *nedges, *edges, *prevedge, mednum = -1, nedgeswap = 0;