Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements

Fix whitespace changes
This commit is contained in:
Michael Sundqvist
2022-07-31 22:14:38 +02:00
committed by Martin Natano
parent f0680a29fc
commit 0cba3579de
534 changed files with 3456 additions and 3488 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ public:
*
* This is not necessarily passed stage stats if this is an Extra Stage. */
StageStats m_CurStageStats;
vector<StageStats> m_vPlayedStageStats;
std::vector<StageStats> m_vPlayedStageStats;
// Only the latest 3 normal songs + passed extra stages.
void GetFinalEvalStageStats( StageStats& statsOut ) const;
@@ -30,7 +30,7 @@ public:
static void CommitStatsToProfiles( const StageStats *pSS );
void UnjoinPlayer( PlayerNumber pn );
void GetStepsInUse( set<Steps*> &apInUseOut ) const;
void GetStepsInUse( std::set<Steps*> &apInUseOut ) const;
// Lua
void PushSelf( lua_State *L );