[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [37923] branches/soc-2011-avocado/blender/ source/blender/bmesh/operators/primitiveops.c: fix warning reported as error with MSVC compiler (9.0), was preventing compile.

Andrea Weikert elubie at gmx.net
Tue Jun 28 21:18:51 CEST 2011


Revision: 37923
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37923
Author:   elubie
Date:     2011-06-28 19:18:50 +0000 (Tue, 28 Jun 2011)
Log Message:
-----------
fix warning reported as error with MSVC compiler (9.0), was preventing compile.

Modified Paths:
--------------
    branches/soc-2011-avocado/blender/source/blender/bmesh/operators/primitiveops.c

Modified: branches/soc-2011-avocado/blender/source/blender/bmesh/operators/primitiveops.c
===================================================================
--- branches/soc-2011-avocado/blender/source/blender/bmesh/operators/primitiveops.c	2011-06-28 18:56:17 UTC (rev 37922)
+++ branches/soc-2011-avocado/blender/source/blender/bmesh/operators/primitiveops.c	2011-06-28 19:18:50 UTC (rev 37923)
@@ -697,8 +697,9 @@
 
 	int i;
 
-	BMVert *v1, *v2, *v3, *v4, *v5, *v6, *v7, *v8;// bin
-	float mat[4][4], off = 1.0f / 2.0f;// bin
+	// BMVert *v1, *v2, *v3, *v4, *v5, *v6, *v7, *v8;// bin
+	// float mat[4][4];
+	float off = 1.0f / 2.0f;// bin
 
 	bGPDframe* p_frame = BMO_Get_Pnt(op, "frame");
 




More information about the Bf-blender-cvs mailing list