Fix issues with superfluous Node typedefs

This commit is contained in:
JacksonCampolattaro 2023-09-01 16:16:30 +02:00
parent 6de261e5f4
commit 59fafe8e3a
3 changed files with 0 additions and 3 deletions

View File

@ -14,7 +14,6 @@ typedef CGAL::Point_set_3<Point> Point_set;
typedef Point_set::Point_map Point_map; typedef Point_set::Point_map Point_map;
typedef CGAL::Octree<Kernel, Point_set, Point_map> Octree; typedef CGAL::Octree<Kernel, Point_set, Point_map> Octree;
typedef Octree::Node Node;
template <typename Tree> template <typename Tree>
struct First_branch_traversal { struct First_branch_traversal {

View File

@ -11,7 +11,6 @@ typedef Kernel::Point_3 Point;
typedef CGAL::Point_set_3<Point> Point_set; typedef CGAL::Point_set_3<Point> Point_set;
typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map> typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map>
Octree; Octree;
typedef Octree::Node Node;
typedef Octree::Traits Traits; typedef Octree::Traits Traits;
int main(void) { int main(void) {

View File

@ -12,7 +12,6 @@ typedef CGAL::Simple_cartesian<double> Kernel;
typedef Kernel::Point_3 Point; typedef Kernel::Point_3 Point;
typedef CGAL::Point_set_3<Point> Point_set; typedef CGAL::Point_set_3<Point> Point_set;
typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map> Octree; typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map> Octree;
typedef Octree::Node Node;
class Split_nth_child_of_root { class Split_nth_child_of_root {
std::size_t m_n; std::size_t m_n;