Skip to content

Commit

Permalink
Bugfix: Missing detail::at in InsertWithRebalancingBase
Browse files Browse the repository at this point in the history
  • Loading branch information
attcs committed Jan 19, 2025
1 parent 8fe4f5a commit 5ad1dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octree.h
Original file line number Diff line number Diff line change
Expand Up @@ -2084,7 +2084,7 @@ namespace OrthoTree
for (size_t i = 0; i < remainingEntityNo; ++i)
{
auto entityID = parentNode.Entities[i];
auto const [depthID, locationID] = this->GetDepthAndLocationID(geometryCollection[entityID]);
auto const [depthID, locationID] = this->GetDepthAndLocationID(detail::at(geometryCollection, entityID));
if (depthID <= parentDepth)
continue;

Expand Down

0 comments on commit 5ad1dbc

Please sign in to comment.