Set loop (plus white space)

This commit is contained in:
Jason Felds
2013-04-27 13:31:47 -04:00
parent eac4dc231d
commit 4cff3766aa
+2 -3
View File
@@ -907,10 +907,9 @@ void SongUtil::GetAllSongGenres( vector<RString> &vsOut )
if( !(*song)->m_sGenre.empty() )
genres.insert( (*song)->m_sGenre );
}
FOREACHS_CONST( RString, genres, s )
for (RString const genre : genres)
{
vsOut.push_back( *s );
vsOut.push_back( genre );
}
}