fix compilation of surf_io_plugin

This commit is contained in:
Jane Tournois 2021-05-31 15:04:34 +02:00
parent 658e6fa654
commit 04c0f8ae6c
1 changed files with 5 additions and 1 deletions

View File

@ -138,7 +138,11 @@ public:
void operator()(PolygonMesh& pmesh,
const bool insert_isolated_vertices = true)
{
return operator()(pmesh, get(CGAL::vertex_point, pmesh), insert_isolated_vertices);
return operator()(pmesh,
get(CGAL::vertex_point, pmesh),
CGAL::Emptyset_iterator(),
CGAL::Emptyset_iterator(),
insert_isolated_vertices);
}
private: