diff --git a/Convex_hull_3/include/CGAL/Indexed_triangle_set.h b/Convex_hull_3/include/CGAL/Indexed_triangle_set.h index 9d76cdf68d1..622cfedc4a6 100644 --- a/Convex_hull_3/include/CGAL/Indexed_triangle_set.h +++ b/Convex_hull_3/include/CGAL/Indexed_triangle_set.h @@ -31,7 +31,7 @@ struct Indexed_triangle_set std::vector >& faces; Indexed_triangle_set(std::vector

& vertices, - std::vector >& faces) + std::vector >& faces) : vertices(vertices), faces(faces) {} }; diff --git a/Convex_hull_3/include/CGAL/convex_hull_3.h b/Convex_hull_3/include/CGAL/convex_hull_3.h index 4076e75a815..87257ec59a3 100644 --- a/Convex_hull_3/include/CGAL/convex_hull_3.h +++ b/Convex_hull_3/include/CGAL/convex_hull_3.h @@ -1088,7 +1088,7 @@ void convex_hull_3(const VertexListGraph& g, template void convex_hull_3(InputIterator first, InputIterator beyond, std::vector

& vertices, - std::vector >& faces, + std::vector >& faces, typename std::enable_if::value>::type* = 0) { typedef typename std::iterator_traits::value_type Point_3;