Skip to content

Commit

Permalink
fixup! ALLOW_OUT_OF_BOX_GEOMETRY flag for smallest node search
Browse files Browse the repository at this point in the history
  • Loading branch information
attcs committed Aug 3, 2024
1 parent c5ae991 commit 222ddf9
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 @@ -2578,7 +2578,7 @@ namespace OrthoTree
std::vector<TEntityID> GetNearestNeighbors(TVector const& searchPoint, std::size_t neighborNo, TContainer const& points) const noexcept
{
auto neighborEntities = std::multiset<EntityDistance>();
autoc smallestNodeKey = this->FindSmallestNode<true>(searchPoint);
autoc smallestNodeKey = this->template FindSmallestNode<true>(searchPoint);
if (Base::IsValidKey(smallestNodeKey))
{
autoc& smallestNode = this->GetNode(smallestNodeKey);
Expand Down

0 comments on commit 222ddf9

Please sign in to comment.