netObject classvar cleanups

This commit is contained in:
Azaezel 2018-03-13 21:27:31 -05:00
parent f0e5fddde8
commit 53869600cc
5 changed files with 29 additions and 29 deletions

View file

@ -515,11 +515,11 @@ void ScopeTracker< NUM_DIMENSIONS, Object >::updateObject( Object object )
while( !mPotentialScopeInObjects.empty() )
{
Object object = mPotentialScopeInObjects.last();
Object obj = mPotentialScopeInObjects.last();
mPotentialScopeInObjects.decrement();
if( Deref( object ).isInScope() )
_onScopeIn( object );
if( Deref(obj).isInScope() )
_onScopeIn(obj);
}
}
else