Make partition_traits' function static (like the others)

This commit is contained in:
Mael Rouxel-Labbé 2025-03-20 16:27:09 +01:00
parent 3c1c050026
commit e1fb8735b4
1 changed files with 2 additions and 2 deletions

View File

@ -657,8 +657,8 @@ private:
return node_index; return node_index;
} }
Node_index get_node(const std::size_t lex_index, static Node_index get_node(const std::size_t lex_index,
const Orthtree& o) const const Orthtree& o)
{ {
std::size_t i, j, k; std::size_t i, j, k;
std::tie(i, j, k) = ijk_index(lex_index, o.depth()); std::tie(i, j, k) = ijk_index(lex_index, o.depth());