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
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user