[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43645] trunk/blender/intern/boolop/intern /BOP_CarveInterface.cpp: Fix compilation error caused by code cleanup

Sergey Sharybin sergey.vfx at gmail.com
Mon Jan 23 18:49:57 CET 2012


Revision: 43645
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43645
Author:   nazgul
Date:     2012-01-23 17:49:56 +0000 (Mon, 23 Jan 2012)
Log Message:
-----------
Fix compilation error caused by code cleanup

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

Modified: trunk/blender/intern/boolop/intern/BOP_CarveInterface.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_CarveInterface.cpp	2012-01-23 17:44:19 UTC (rev 43644)
+++ trunk/blender/intern/boolop/intern/BOP_CarveInterface.cpp	2012-01-23 17:49:56 UTC (rev 43645)
@@ -372,8 +372,8 @@
 	}
 
 	// build vectors of faces for each original face and each vertex 
-	std::vector<std::vector<uint>> vi(poly->vertex_storage.size());
-	std::vector<std::vector<uint>> ofaces(num_origfaces);
+	std::vector<std::vector<uint> > vi(poly->vertex_storage.size());
+	std::vector<std::vector<uint> > ofaces(num_origfaces);
 	MeshSet<3>::face_iter face_iter = poly->faceBegin();
 	for (i = 0; face_iter != poly->faceEnd(); ++face_iter, ++i) {
 		MeshSet<3>::face_t *f = *face_iter;




More information about the Bf-blender-cvs mailing list