From 77f240b1b638f68bb1c830b6801d54d57598c951 Mon Sep 17 00:00:00 2001 From: JacksonCampolattaro Date: Thu, 31 Aug 2023 12:48:52 +0200 Subject: [PATCH] Delete Orthtree::Node class, now used nowhere --- Orthtree/include/CGAL/Orthtree.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Orthtree/include/CGAL/Orthtree.h b/Orthtree/include/CGAL/Orthtree.h index f1c7acdd73a..a606bd93702 100644 --- a/Orthtree/include/CGAL/Orthtree.h +++ b/Orthtree/include/CGAL/Orthtree.h @@ -137,19 +137,13 @@ public: */ typedef std::array Global_coordinates; - /*! - * \brief The Sub-tree / Orthant type. - * todo: this should be removed - */ - class Node; - /*! * \brief A predicate that determines whether a node must be split when refining a tree. */ typedef std::function Split_predicate; /*! - * \brief A model of `ConstRange` whose value type is `Node`. + * \brief A model of `ConstRange` whose value type is `Node_index`. */ #ifdef DOXYGEN_RUNNING typedef unspecified_type Node_range;