This commit is contained in:
Andreas Fabri 2021-09-21 09:32:42 +01:00
parent c9f80d694f
commit 420f9d64f6
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ struct Indexed_triangle_set
std::vector<std::array<int,3> >& faces; std::vector<std::array<int,3> >& faces;
Indexed_triangle_set(std::vector<P>& vertices, Indexed_triangle_set(std::vector<P>& vertices,
std::vector<std::array<int,3> >& faces) std::vector<std::array<int,3> >& faces)
: vertices(vertices), faces(faces) : vertices(vertices), faces(faces)
{} {}
}; };

View File

@ -1088,7 +1088,7 @@ void convex_hull_3(const VertexListGraph& g,
template <class InputIterator, class P> template <class InputIterator, class P>
void convex_hull_3(InputIterator first, InputIterator beyond, void convex_hull_3(InputIterator first, InputIterator beyond,
std::vector<P>& vertices, std::vector<P>& vertices,
std::vector<std::array<int,3> >& faces, std::vector<std::array<int,3> >& faces,
typename std::enable_if<CGAL::is_iterator<InputIterator>::value>::type* = 0) typename std::enable_if<CGAL::is_iterator<InputIterator>::value>::type* = 0)
{ {
typedef typename std::iterator_traits<InputIterator>::value_type Point_3; typedef typename std::iterator_traits<InputIterator>::value_type Point_3;