diff --git a/Packages/Kernel_d/include/CGAL/Convex_hull_d_to_polyhedron_3.h b/Packages/Kernel_d/include/CGAL/Convex_hull_d_to_polyhedron_3.h index 9d41e50d5fe..14851e31092 100644 --- a/Packages/Kernel_d/include/CGAL/Convex_hull_d_to_polyhedron_3.h +++ b/Packages/Kernel_d/include/CGAL/Convex_hull_d_to_polyhedron_3.h @@ -105,13 +105,13 @@ private: include || \setopdims{2cm}{3cm}}*/ -template +template void convex_hull_d_to_polyhedron_3( - const Convex_hull_d& C, Polyhedron_3& P) + const Convex_hull_d& C, Polyhedron_3& P) /*{\Mfunc converts the convex hull |C| to polyedral surface stored in |P|.\\ \precond |dim == 3| and |dcur == 3|. }*/ { typedef Convex_hull_d ChullType; - typedef typename Polyhedron_3::HalfedgeDS HDS; + typedef typename Polyhedron_3::HalfedgeDS HDS; CGAL_assertion_msg(C.dimension()==3&&C.current_dimension()==3, "convex_hull_d_to_polyhedron_3: only full manifold can be transformed."); Build_polyhedron_from_chull get_surface(C);