Skip to content
Snippets Groups Projects
Commit 5552674f authored by Henry Weller's avatar Henry Weller
Browse files

surfaceCoarsen: Changed List<::... to List< ::... for gcc-4.5

parent 7d192447
Branches
Tags
1 merge request!33Merge foundation
......@@ -95,8 +95,8 @@ int main(int argc, char *argv[])
Info<< endl;
::List<::Vector> vert; // global list of vertices
::List<::tridata> tri; // global list of triangles
::List< ::Vector> vert; // global list of vertices
::List< ::tridata> tri; // global list of triangles
// Convert triSurface to progmesh format. Note: can use global point
......@@ -127,7 +127,7 @@ int main(int argc, char *argv[])
::ProgressiveMesh(vert,tri,collapse_map,permutation);
// rearrange the vertex list
::List<::Vector> temp_list;
::List< ::Vector> temp_list;
for (int i=0;i<vert.num;i++)
{
temp_list.Add(vert[i]);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment