Another loop, another white spaced file.

This commit is contained in:
Jason Felds
2013-04-27 13:36:19 -04:00
parent 105d603265
commit 46d15c23dc
+2 -3
View File
@@ -205,10 +205,9 @@ void MessageManager::Broadcast( Message &msg ) const
if( iter == g_MessageToSubscribers.end() ) if( iter == g_MessageToSubscribers.end() )
return; return;
FOREACHS_CONST( IMessageSubscriber*, iter->second, p ) for (IMessageSubscriber *subscriber : iter->second)
{ {
IMessageSubscriber *pSub = *p; subscriber->HandleMessage( msg );
pSub->HandleMessage( msg );
} }
} }