Again, auto can come in handy.
This commit is contained in:
+2
-2
@@ -798,9 +798,9 @@ void Course::RegenerateNonFixedTrails() const
|
||||
if( AllSongsAreFixed() )
|
||||
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 );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user