Module: wine Branch: master Commit: f9facad2353cf3761a2fea9a25d3e8e4d5527457 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f9facad2353cf3761a2fea9a25...
Author: Austin English austinenglish@gmail.com Date: Sat Feb 5 20:58:47 2011 -0800
d3dx9_36/tests: Remove unused variable assignments (LLVM/Clang).
---
dlls/d3dx9_36/tests/mesh.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/d3dx9_36/tests/mesh.c b/dlls/d3dx9_36/tests/mesh.c index 6ba7224..5e875bd 100644 --- a/dlls/d3dx9_36/tests/mesh.c +++ b/dlls/d3dx9_36/tests/mesh.c @@ -1434,7 +1434,6 @@ static BOOL compute_sphere(struct mesh *mesh, FLOAT radius, UINT slices, UINT st
vertex = 0; face = 0; - stack = 0;
mesh->vertices[vertex].normal.x = 0.0f; mesh->vertices[vertex].normal.y = 0.0f; @@ -1663,7 +1662,6 @@ static BOOL compute_cylinder(struct mesh *mesh, FLOAT radius1, FLOAT radius2, FL
vertex = 0; face = 0; - stack = 0;
delta_radius = radius1 - radius2; radius = radius1;