From 420f9d64f6c6c58d51e9066de0180b6bf7d381b3 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 21 Sep 2021 09:32:42 +0100 Subject: [PATCH] untabify --- Convex_hull_3/include/CGAL/Indexed_triangle_set.h | 2 +- Convex_hull_3/include/CGAL/convex_hull_3.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;