diff --git a/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/Isosurfacing_domain_3.h b/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/Isosurfacing_domain_3.h index b2a7bfdfcd3..5b86dfc9b35 100644 --- a/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/Isosurfacing_domain_3.h +++ b/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/Isosurfacing_domain_3.h @@ -124,21 +124,21 @@ public: } // iterates over all vertices `v`, calling `f(v)` on each of them - template + template void for_each_vertex(Functor& f) const { m_topo.for_each_vertex(f, ConcurrencyTag{}); } // iterates over all edges `e`, calling `f(e)` on each of them - template + template void for_each_edge(Functor& f) const { m_topo.for_each_edge(f, ConcurrencyTag{}); } // iterates over all cells `c`, calling `f(c)` on each of them - template + template void for_each_cell(Functor& f) const { m_topo.for_each_cell(f, ConcurrencyTag{});