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
+3 -3
View File
@@ -54,8 +54,8 @@ public:
void ApplyToAllPlayers() const;
void Apply( PlayerNumber pn ) const;
private:
void Apply( const vector<PlayerNumber> &vpns ) const;
void ApplySelf( const vector<PlayerNumber> &vpns ) const;
void Apply( const std::vector<PlayerNumber> &vpns ) const;
void ApplySelf( const std::vector<PlayerNumber> &vpns ) const;
public:
bool DescribesCurrentMode( PlayerNumber pn ) const;
@@ -96,7 +96,7 @@ public:
RString m_sSongGroup;
SortOrder m_SortOrder;
RString m_sSoundPath; // "" for no sound
vector<RString> m_vsScreensToPrepare;
std::vector<RString> m_vsScreensToPrepare;
/**
* @brief What is the player's weight in pounds?
*