File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3577,7 +3577,7 @@ namespace OrthoTree
3577
3577
for (std::size_t iEntity = 0 ; iEntity < entityNoInNode; ++iEntity)
3578
3578
{
3579
3579
autoc iEntityID = entityIDs[iEntity];
3580
- autoc& entityKeys = entityIDNodeMap[ iEntityID] ;
3580
+ autoc& entityKeys = entityIDNodeMap. at ( iEntityID) ;
3581
3581
autoc entityKeysNo = entityKeys.size ();
3582
3582
3583
3583
for (std::size_t jEntity = iEntity + 1 ; jEntity < entityNoInNode; ++jEntity)
@@ -3591,7 +3591,7 @@ namespace OrthoTree
3591
3591
else
3592
3592
{
3593
3593
// Same entities could collide in other nodes, but only the first occurrence should be checked
3594
- autoc& entityKeysOfJ = entityIDNodeMap[ jEntityID] ;
3594
+ autoc& entityKeysOfJ = entityIDNodeMap. at ( jEntityID) ;
3595
3595
auto isFirstCollisionCheckHappening = entityKeysNo == 1 || entityKeysOfJ.size () == 1 ;
3596
3596
if (!isFirstCollisionCheckHappening)
3597
3597
{
You can’t perform that action at this time.
0 commit comments