mirror of https://github.com/CGAL/cgal
Fix conversion warning
This commit is contained in:
parent
69df3ae5a5
commit
ee86465438
|
|
@ -123,7 +123,7 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
// reassemble the mesh
|
// reassemble the mesh
|
||||||
Triangle_mesh final_mesh;
|
Triangle_mesh final_mesh;
|
||||||
std::size_t nv=0, nf=0, ne=0;
|
Triangle_mesh::size_type nv = 0, nf = 0, ne = 0;
|
||||||
for (int i=0; i< number_of_parts; ++i)
|
for (int i=0; i< number_of_parts; ++i)
|
||||||
{
|
{
|
||||||
meshes[i].collect_garbage();
|
meshes[i].collect_garbage();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue