Remove unneeded return value from ProcessBPMs

This commit is contained in:
Devin J. Pohly
2013-05-17 05:43:25 -04:00
parent b1d2f68737
commit 785cff2abc
3 changed files with 9 additions and 12 deletions
+2 -3
View File
@@ -79,9 +79,8 @@ struct SMLoader
/**
* @brief Process the BPM Segments from the string.
* @param out the TimingData being modified.
* @param vBPMChanges the vector of BPM Changes data.
* @return true if there was at least one segment found, false otherwise. */
bool ProcessBPMs(TimingData & out,
* @param vBPMChanges the vector of BPM Changes data. */
void ProcessBPMs(TimingData & out,
const vector< pair<float, float> > &vBPMChanges);
/**
* @brief Parse Stops data from a string.