From a5f139f9dff58bbc4b2e51b7235ac4857ed2d733 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Thu, 11 Mar 2021 09:34:33 +0100 Subject: [PATCH] Remove unused variables --- .../CGAL/Shape_detection/Efficient_RANSAC/Efficient_RANSAC.h | 1 - 1 file changed, 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 d414a3259e6..9e2f473d5ad 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 @@ -1091,7 +1091,6 @@ private: const typename Octree::Node node_containing_point(const Octree *octree, const Point &p, std::size_t level) { // Find the node containing the point - bool upperZ, upperY, upperX; typename Octree::Node cur = octree->root(); while (!cur.is_null() && cur.depth() < level) {