You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (DynamicSongSection& songSection: GetSongSections()) {
145
145
if (songSection.GetSectionType() == songSectionToAdd.GetSectionType()) {
146
-
RTEAssert(false, "Tried to add a SongSection with SectionType " + songSection.GetSectionType() + ", which the DynamicSong already had in another SongSection!")
147
-
break;
146
+
RTEAssert(false, "Tried to add a SongSection with SectionType " + songSection.GetSectionType() + ", which the DynamicSong already had in another SongSection!") break;
148
147
}
149
148
}
150
149
m_SongSections.push_back(songSectionToAdd);
151
150
}
152
151
#pragma endregion
153
-
152
+
154
153
#pragma region Getters and Setters
155
154
/// Gets the DefaultSongSection for this DynamicSong.
156
155
/// @return The default DynamicSongSection for this DynamicSong.
0 commit comments