Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements
Fix whitespace changes
This commit is contained in:
committed by
Martin Natano
parent
f0680a29fc
commit
0cba3579de
+2
-2
@@ -37,8 +37,8 @@ public:
|
||||
Stage m_Stage;
|
||||
int m_iStageIndex;
|
||||
PlayMode m_playMode;
|
||||
vector<Song*> m_vpPlayedSongs;
|
||||
vector<Song*> m_vpPossibleSongs;
|
||||
std::vector<Song*> m_vpPlayedSongs;
|
||||
std::vector<Song*> m_vpPossibleSongs;
|
||||
|
||||
/** @brief Was an extra stage earned this goaround? */
|
||||
EarnedExtraStage m_EarnedExtraStage;
|
||||
|
||||
Reference in New Issue
Block a user