diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-12-11 19:44:03 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-12-11 19:44:03 +0100 |
commit | 62dbb0619b552d22ec35f89249553b518af609b7 (patch) | |
tree | ee74ab4b6e3c9b9d8fd0aba24d840d1a4ad6751b /src/common/Collision/BoundingIntervalHierarchyWrapper.h | |
parent | d27abec9e8aab9664c810ed00134c1cbe7afdb08 (diff) |
Core/Vmaps: Minor cleanup (formatting) and documentation updates for BIH::build copy vs move choice
Diffstat (limited to 'src/common/Collision/BoundingIntervalHierarchyWrapper.h')
-rw-r--r-- | src/common/Collision/BoundingIntervalHierarchyWrapper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Collision/BoundingIntervalHierarchyWrapper.h b/src/common/Collision/BoundingIntervalHierarchyWrapper.h index f15e80b9a2e..30ff03733eb 100644 --- a/src/common/Collision/BoundingIntervalHierarchyWrapper.h +++ b/src/common/Collision/BoundingIntervalHierarchyWrapper.h @@ -94,7 +94,7 @@ public: m_objects_to_push.getMembers(m_objects); //assert that m_obj2Idx has all the keys - m_tree.build(m_objects, BoundsFunc::getBounds2); + m_tree.build(m_objects, BoundsFunc()); } template<typename RayCallback> |