From ddcbec81cded25b3e4c1ac631feecc417de573e3 Mon Sep 17 00:00:00 2001 From: Susan Hert Date: Tue, 17 Jul 2001 16:38:14 +0000 Subject: [PATCH] removed returns of void functions --- Packages/Convex_hull_3/include/CGAL/convex_hull_3.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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()); }