diff --git a/Constrained_triangulation_3/include/CGAL/IO/write_MEDIT.h b/Constrained_triangulation_3/include/CGAL/IO/write_MEDIT.h index 623198c8fc1..c72925a7bea 100644 --- a/Constrained_triangulation_3/include/CGAL/IO/write_MEDIT.h +++ b/Constrained_triangulation_3/include/CGAL/IO/write_MEDIT.h @@ -30,17 +30,17 @@ namespace IO * * \see \ref IOStreamMedit */ -template +template void write_MEDIT(std::ostream& os, - const Conforming_constrained_Delaunay_triangulation_3& ccdt) + const Conforming_constrained_Delaunay_triangulation_3& ccdt) { const auto& tr = ccdt.triangulation(); - using Tr = typename cpp20::remove_cvref_t; + using Tr_ = typename cpp20::remove_cvref_t; - using Vertex_handle = typename Tr::Vertex_handle; - using Facet = typename Tr::Facet; - using Cell_handle = typename Tr::Cell_handle; + using Vertex_handle = typename Tr_::Vertex_handle; + using Facet = typename Tr_::Facet; + using Cell_handle = typename Tr_::Cell_handle; CGAL::unordered_flat_map cells_in_domain; for(Cell_handle c : tr.all_cell_handles()) cells_in_domain[c] = true;