Files
vcpkg/ports/vtk/octree.patch
Jeffrey Wardman aeac3fa8d3 vtk octree patch (#46440)
Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
2025-07-23 09:29:15 -07:00

14 lines
540 B
Diff

diff --git a/Utilities/octree/octree/octree_node.txx b/Utilities/octree/octree/octree_node.txx
index 6971c7c119..5f12bb7de7 100644
--- a/Utilities/octree/octree/octree_node.txx
+++ b/Utilities/octree/octree/octree_node.txx
@@ -210,7 +210,7 @@ const octree_node<T_, d_, A_>& octree_node<T_, d_, A_>::operator[](int child) co
{
throw std::domain_error("Attempt to access children of an octree leaf node.");
}
- return this->_M_chilren[child];
+ return this->m_children[child];
}
/**\brief Return a reference to a child node.