From e1fb8735b4d1ac36e8a1d848e6dbe7803fff0293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 20 Mar 2025 16:27:09 +0100 Subject: [PATCH] Make partition_traits' function static (like the others) --- .../CGAL/Isosurfacing_3/internal/partition_traits_Octree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/partition_traits_Octree.h b/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/partition_traits_Octree.h index a9a69ba987e..fa7785c2bcb 100644 --- a/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/partition_traits_Octree.h +++ b/Isosurfacing_3/include/CGAL/Isosurfacing_3/internal/partition_traits_Octree.h @@ -657,8 +657,8 @@ private: return node_index; } - Node_index get_node(const std::size_t lex_index, - const Orthtree& o) const + static Node_index get_node(const std::size_t lex_index, + const Orthtree& o) { std::size_t i, j, k; std::tie(i, j, k) = ijk_index(lex_index, o.depth());