From d96a4fd9a216f8b7a49fc5e4b7ce2f2ed5ed1576 Mon Sep 17 00:00:00 2001 From: Jackson Campolattaro Date: Tue, 4 Aug 2020 14:47:55 -0400 Subject: [PATCH] Typedef Cell as Node --- .../CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h b/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h index 002088950bb..20dbbcec00e 100644 --- a/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h +++ b/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h @@ -1076,7 +1076,7 @@ private: const std::vector &shapeIndex, std::size_t requiredSamples) { - typedef typename Octree::Cell Cell; + typedef typename Octree::Node Cell; bool upperZ, upperY, upperX; const Cell *cur = octree->root();