diff --git a/Packages/Convex_hull_3/include/CGAL/convex_hull_3.h b/Packages/Convex_hull_3/include/CGAL/convex_hull_3.h index 31b72506c5a..3269cdbe53c 100644 --- a/Packages/Convex_hull_3/include/CGAL/convex_hull_3.h +++ b/Packages/Convex_hull_3/include/CGAL/convex_hull_3.h @@ -562,8 +562,8 @@ void convex_hull_3(InputIterator first, InputIterator beyond, Object& ch_object) { typedef typename std::iterator_traits::value_type Point_3; - return CGAL_ch_quickhull_obj_3(first, beyond, ch_object, - reinterpret_cast(0)); + CGAL_ch_quickhull_obj_3(first, beyond, ch_object, + reinterpret_cast(0)); } @@ -571,7 +571,7 @@ template void CGAL_ch_quickhull_obj_3(InputIterator first, InputIterator beyond, Object& ch_object, Point_3*) { - return convex_hull_3(first, beyond, ch_object, Convex_hull_traits_3()); + convex_hull_3(first, beyond, ch_object, Convex_hull_traits_3()); } template @@ -614,7 +614,7 @@ void convex_hull_3(InputIterator first, InputIterator beyond, Polyhedron_3& polyhedron) { typedef typename std::iterator_traits::value_type Point_3; - return CGAL_ch_quickhull_poly_3(first, beyond, polyhedron, + CGAL_ch_quickhull_poly_3(first, beyond, polyhedron, reinterpret_cast(0)); } @@ -623,7 +623,7 @@ template void CGAL_ch_quickhull_poly_3(InputIterator first, InputIterator beyond, Polyhedron_3& polyhedron, Point_3*) { - return convex_hull_3(first, beyond, polyhedron, Convex_hull_traits_3()); + convex_hull_3(first, beyond, polyhedron, Convex_hull_traits_3()); }