From fef28d4c8b792e76c24b69dd701fe319da19212c Mon Sep 17 00:00:00 2001 From: Jackson Campolattaro Date: Fri, 31 Jul 2020 12:05:06 -0400 Subject: [PATCH] Replace is_empty() with empty() --- Octree/include/CGAL/Octree/Node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octree/include/CGAL/Octree/Node.h b/Octree/include/CGAL/Octree/Node.h index e0c8757ff08..79c330ff9f3 100644 --- a/Octree/include/CGAL/Octree/Node.h +++ b/Octree/include/CGAL/Octree/Node.h @@ -281,7 +281,7 @@ public: * \brief check whether this node contains any points * \return if this node contains no points */ - bool is_empty() const { + bool empty() const { return m_points.empty(); }