[Bf-blender-cvs] [a2ca8fe] soc-2014-remesh: Warnings fixed, about non used variables.

Alexander Pinzon Fernandez noreply at git.blender.org
Sat Jul 19 04:05:16 CEST 2014


Commit: a2ca8fe24653904628ca168b663eb1f1a4065b71
Author: Alexander Pinzon Fernandez
Date:   Fri Jul 18 21:03:13 2014 -0500
https://developer.blender.org/rBa2ca8fe24653904628ca168b663eb1f1a4065b71

Warnings fixed, about non used variables.

===================================================================

M	source/blender/modifiers/intern/MOD_quadremesh.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_quadremesh.c b/source/blender/modifiers/intern/MOD_quadremesh.c
index 2772941..8bc8025 100644
--- a/source/blender/modifiers/intern/MOD_quadremesh.c
+++ b/source/blender/modifiers/intern/MOD_quadremesh.c
@@ -425,6 +425,7 @@ static void computeGradientFields(LaplacianSystem * sys)
 */
 static void computeDirectionVectorOnFace(float dir[3], LaplacianSystem * sys, float origin[3], int indexf)
 {
+
 }
 
 /**
@@ -459,7 +460,7 @@ static int getNeighborFaceWithMinUField(LaplacianSystem * sys, int index, float
 * int ifs; Index of vertx, this vertex is the seed for trace this flow line
 */
 static void computeGradientFlowLine(LaplacianSystem * sys, int ivs){
-	float uvalue, minU, tempminU, x[3], p[3], q[3], i1[3], i2[3];
+	float minU, tempminU, x[3], p[3], i1[3], i2[3];
 	int i, numf, indexf, actualf, indf;
 	int *fidn;
 	int *vin, has4v;




More information about the Bf-blender-cvs mailing list