diff --git a/Combinatorial_map/include/CGAL/Combinatorial_map.h b/Combinatorial_map/include/CGAL/Combinatorial_map.h index 42b64358d00..9362ef469f9 100644 --- a/Combinatorial_map/include/CGAL/Combinatorial_map.h +++ b/Combinatorial_map/include/CGAL/Combinatorial_map.h @@ -268,7 +268,7 @@ namespace CGAL { if (copy_perforated_darts || !amap.is_perforated(it)) { new_dart=mdarts.emplace(); - init_dart(new_dart, amap.get_marks(it)); + init_dart(new_dart); // , amap.get_marks(it)); if (mark_perforated!=NB_MARKS && amap.is_perforated(it)) { mark(new_dart, mark_perforated); } diff --git a/Generalized_map/include/CGAL/Generalized_map.h b/Generalized_map/include/CGAL/Generalized_map.h index d0372975c43..5d344bef9f2 100644 --- a/Generalized_map/include/CGAL/Generalized_map.h +++ b/Generalized_map/include/CGAL/Generalized_map.h @@ -232,7 +232,7 @@ namespace CGAL { if (copy_perforated_darts || !amap.is_perforated(it)) { new_dart=mdarts.emplace(); - init_dart(new_dart, amap.get_marks(it)); + init_dart(new_dart); //, amap.get_marks(it)); if (mark_perforated!=NB_MARKS && amap.is_perforated(it)) { mark(new_dart, mark_perforated); }