[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11077] trunk/blender/intern/boolop/intern /BOP_BSPNode.cpp: a var was declared twice in the same function, just removing the

Kent Mein mein at cs.umn.edu
Tue Jun 26 20:15:45 CEST 2007


Revision: 11077
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11077
Author:   sirdude
Date:     2007-06-26 20:15:45 +0200 (Tue, 26 Jun 2007)

Log Message:
-----------
a var was declared twice in the same function, just removing the
second declaration.

Kent

Modified Paths:
--------------
    trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp

Modified: trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp	2007-06-26 17:46:12 UTC (rev 11076)
+++ trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp	2007-06-26 18:15:45 UTC (rev 11077)
@@ -98,7 +98,7 @@
 		// classify each line segment, looking for endpoints which lie on different
 		// sides of the hyperplane.
 
-		BOP_IT_BSPPoints ptsEnd = pts.end();
+		ptsEnd = pts.end();
 		for(BOP_IT_BSPPoints itp=pts.begin();itp!=ptsEnd;itp++){
 			MT_Point3 npoint= *itp;
 			BOP_TAG ntag = testPoint(npoint);





More information about the Bf-blender-cvs mailing list