Again, auto can come in handy.

This commit is contained in:
Jason Felds
2013-04-27 23:58:35 -04:00
parent 7e810ef9f6
commit 85dae04da5
+2 -2
View File
@@ -798,9 +798,9 @@ void Course::RegenerateNonFixedTrails() const
if( AllSongsAreFixed() ) if( AllSongsAreFixed() )
return; return;
FOREACHM( CacheEntry, CacheData, m_TrailCache, e ) for (auto const & e: m_TrailCache)
{ {
const CacheEntry &ce = e->first; const CacheEntry &ce = e.first;
GetTrailForceRegenCache( ce.first, ce.second ); GetTrailForceRegenCache( ce.first, ce.second );
} }
} }