mirror of https://github.com/CGAL/cgal
Fix issues with superfluous Node typedefs
This commit is contained in:
parent
6de261e5f4
commit
59fafe8e3a
|
|
@ -14,7 +14,6 @@ typedef CGAL::Point_set_3<Point> Point_set;
|
|||
typedef Point_set::Point_map Point_map;
|
||||
|
||||
typedef CGAL::Octree<Kernel, Point_set, Point_map> Octree;
|
||||
typedef Octree::Node Node;
|
||||
|
||||
template <typename Tree>
|
||||
struct First_branch_traversal {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ typedef Kernel::Point_3 Point;
|
|||
typedef CGAL::Point_set_3<Point> Point_set;
|
||||
typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map>
|
||||
Octree;
|
||||
typedef Octree::Node Node;
|
||||
typedef Octree::Traits Traits;
|
||||
|
||||
int main(void) {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ typedef CGAL::Simple_cartesian<double> Kernel;
|
|||
typedef Kernel::Point_3 Point;
|
||||
typedef CGAL::Point_set_3<Point> Point_set;
|
||||
typedef CGAL::Octree<Kernel, Point_set, typename Point_set::Point_map> Octree;
|
||||
typedef Octree::Node Node;
|
||||
|
||||
class Split_nth_child_of_root {
|
||||
std::size_t m_n;
|
||||
|
|
|
|||
Loading…
Reference in New Issue