indenting cleanup

This commit is contained in:
Chris Danford
2006-08-18 04:44:19 +00:00
parent 6f20ee99ef
commit 596011f42f
+10 -3
View File
@@ -38,9 +38,16 @@ public:
bool operator==( const SongCriteria &other ) const
{
#define X(x) (x == other.x)
return X(m_sGroupName) && X(m_bUseSongGenreAllowedList) && X(m_vsSongGenreAllowedList) &&
X(m_Selectable) && X(m_bUseSongAllowedList) && X(m_vpSongAllowedList) &&
X(m_iStagesForSong) && X(m_Tutorial) && X(m_Locked);
return
X(m_sGroupName) &&
X(m_bUseSongGenreAllowedList) &&
X(m_vsSongGenreAllowedList) &&
X(m_Selectable) &&
X(m_bUseSongAllowedList) &&
X(m_vpSongAllowedList) &&
X(m_iStagesForSong) &&
X(m_Tutorial) &&
X(m_Locked);
#undef X
}
bool operator!=( const SongCriteria &other ) const { return !operator==( other ); }