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-06-02 05:02:08 +0400
committerJoshua Leung <aligorith@gmail.com>2008-06-02 05:02:08 +0400
commit86a0afb8295c2ba6560f8ceb9b35c873b614317e (patch)
treecc256c2fa49538245ce61ea2ee4f48f8337ae89a /source/blender/blenkernel/intern/BME_mesh.c
parent85e77e53ef29274d456ecfdb95ec2a60cb5253f1 (diff)
Compiler warning fixes (unused vars).
Notes: - edgehash.c still has some weirdo code causing warnings on lines 80 and 117 i.e. if (v1<v0) v0 ^= v1 ^= v0 ^= v1; - material.c (in pyapi) apparently doesn't seem to be making use of some functions for glossy stuff
Diffstat (limited to 'source/blender/blenkernel/intern/BME_mesh.c')
-rw-r--r--source/blender/blenkernel/intern/BME_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/BME_mesh.c b/source/blender/blenkernel/intern/BME_mesh.c
index e12ba2f8c65..0423d9a0ac6 100644
--- a/source/blender/blenkernel/intern/BME_mesh.c
+++ b/source/blender/blenkernel/intern/BME_mesh.c
@@ -138,7 +138,7 @@ int BME_model_begin(BME_Mesh *bm){
}
void BME_model_end(BME_Mesh *bm){
- int meshok, totvert, totedge, totpoly, totloop;
+ int meshok, totvert, totedge, totpoly;
totvert = BLI_countlist(&(bm->verts));
totedge = BLI_countlist(&(bm->edges));