tAlgorythm fed namespace T3D for better library interoperability. resulted in the need to specify usage in... a few places.

This commit is contained in:
Azaezel 2017-12-19 16:04:46 -06:00
parent 83449bbc06
commit 491a7dcfdd
20 changed files with 70 additions and 69 deletions

View file

@ -85,7 +85,7 @@ void ForestWindMgr::addEmitter( ForestWindEmitter *emitter )
void ForestWindMgr::removeEmitter( ForestWindEmitter *emitter )
{
ForestWindEmitterList::iterator iter = find( mEmitters.begin(),
ForestWindEmitterList::iterator iter = T3D::find( mEmitters.begin(),
mEmitters.end(),
emitter );
@ -161,7 +161,7 @@ void ForestWindMgr::processTick()
PROFILE_SCOPE( ForestWindMgr_AdvanceTime_SwapSources );
AssertFatal( mPrevSources->isEmpty(), "prev sources not empty!" );
swap( mSources, mPrevSources );
T3D::swap( mSources, mPrevSources );
AssertFatal( mSources->isEmpty(), "swap failed!" );
}