indenting cleanup
This commit is contained in:
@@ -38,9 +38,16 @@ public:
|
|||||||
bool operator==( const SongCriteria &other ) const
|
bool operator==( const SongCriteria &other ) const
|
||||||
{
|
{
|
||||||
#define X(x) (x == other.x)
|
#define X(x) (x == other.x)
|
||||||
return X(m_sGroupName) && X(m_bUseSongGenreAllowedList) && X(m_vsSongGenreAllowedList) &&
|
return
|
||||||
X(m_Selectable) && X(m_bUseSongAllowedList) && X(m_vpSongAllowedList) &&
|
X(m_sGroupName) &&
|
||||||
X(m_iStagesForSong) && X(m_Tutorial) && X(m_Locked);
|
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
|
#undef X
|
||||||
}
|
}
|
||||||
bool operator!=( const SongCriteria &other ) const { return !operator==( other ); }
|
bool operator!=( const SongCriteria &other ) const { return !operator==( other ); }
|
||||||
|
|||||||
Reference in New Issue
Block a user