From 4adb39d31a6a8895cf1178e10c7fd8c50e9e8560 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 5 May 2013 00:12:10 -0400 Subject: [PATCH] A vector isn't needed here. --- src/Song.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Song.h b/src/Song.h index a13a9f9438..6cc8d650c0 100644 --- a/src/Song.h +++ b/src/Song.h @@ -447,7 +447,7 @@ private: /** @brief the Steps that belong to this Song. */ vector m_vpSteps; /** @brief the Steps of a particular StepsType that belong to this Song. */ - vector m_vpStepsByType[NUM_StepsType]; + std::array, NUM_StepsType> m_vpStepsByType; }; #endif