From 5ce268f7d57ec6584b9275c3b4b8a2768ca5868c Mon Sep 17 00:00:00 2001 From: Lingjie Zhu Date: Tue, 30 Jul 2019 10:10:03 +0800 Subject: [PATCH] minor fix: add const specifier --- .../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 f25b9a1ffa0..7c8629e5d7c 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 @@ -854,7 +854,7 @@ namespace CGAL { /*! Number of points not assigned to a shape. */ - std::size_t number_of_unassigned_points() { + std::size_t number_of_unassigned_points() const { return m_num_available_points; }