A vector isn't needed here.

This commit is contained in:
Jason Felds
2013-05-05 00:12:10 -04:00
parent 353d41edc6
commit 4adb39d31a
+1 -1
View File
@@ -447,7 +447,7 @@ private:
/** @brief the Steps that belong to this Song. */
vector<Steps*> m_vpSteps;
/** @brief the Steps of a particular StepsType that belong to this Song. */
vector<Steps*> m_vpStepsByType[NUM_StepsType];
std::array<vector<Steps *>, NUM_StepsType> m_vpStepsByType;
};
#endif