From 1b5cfa66e65e48bdee8f8ea9a19e0758e6e28b22 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 9 Oct 2018 14:55:05 +0200 Subject: [PATCH] Edit after review --- AABB_tree/include/CGAL/AABB_tree.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/AABB_tree/include/CGAL/AABB_tree.h b/AABB_tree/include/CGAL/AABB_tree.h index 0239cf99981..7cad29ba63b 100644 --- a/AABB_tree/include/CGAL/AABB_tree.h +++ b/AABB_tree/include/CGAL/AABB_tree.h @@ -156,9 +156,7 @@ namespace CGAL { /// `build()` explicitly to ensure that the next call to /// query functions will not trigger the reconstruction of the /// data structure. - /// The parameter pack `T` is of any types - /// such that `Primitive` has a constructor with the following signature: - /// `Primitive(%InputIterator, T...)`. A call to `AABBTraits::set_shared_data(t...)` + /// A call to `AABBTraits::set_shared_data(t...)` /// is made using the internally stored traits. /// For compilers that do not support variadic templates, /// overloads up to 5 template arguments are provided. @@ -1130,7 +1128,7 @@ public: // constructs the tree m_p_root_node->expand(m_primitives.begin(), m_primitives.end(), - m_primitives.size(), m_traits); + m_primitives.size(), m_traits); }