diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/vtk/octree.patch | |
Diffstat (limited to 'vcpkg/ports/vtk/octree.patch')
| -rw-r--r-- | vcpkg/ports/vtk/octree.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vcpkg/ports/vtk/octree.patch b/vcpkg/ports/vtk/octree.patch new file mode 100644 index 0000000..281aec7 --- /dev/null +++ b/vcpkg/ports/vtk/octree.patch @@ -0,0 +1,13 @@ +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. |