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
+5 -5
View File
@@ -76,7 +76,7 @@ public:
int iRow;
TapNote *pTN;
};
void UpdateHoldNotes( int iSongRow, float fDeltaTime, vector<TrackRowTapNote> &vTN );
void UpdateHoldNotes( int iSongRow, float fDeltaTime, std::vector<TrackRowTapNote> &vTN );
void Init(
const RString &sType,
@@ -144,7 +144,7 @@ protected:
void FlashGhostRow( int iRow );
void HandleTapRowScore( unsigned row );
void HandleHoldScore( const TapNote &tn );
void HandleHoldCheckpoint( int iRow, int iNumHoldsHeldThisRow, int iNumHoldsMissedThisRow, const vector<int> &viColsWithHold );
void HandleHoldCheckpoint( int iRow, int iNumHoldsHeldThisRow, int iNumHoldsMissedThisRow, const std::vector<int> &viColsWithHold );
void DrawTapJudgments();
void DrawHoldJudgments();
void SendComboMessages( unsigned int iOldCombo, unsigned int iOldMissCombo );
@@ -192,7 +192,7 @@ protected:
NoteData &m_NoteData;
NoteField *m_pNoteField;
vector<HoldJudgment*> m_vpHoldJudgment;
std::vector<HoldJudgment*> m_vpHoldJudgment;
AutoActor m_sprJudgment;
AutoActor m_sprCombo;
@@ -226,9 +226,9 @@ protected:
float m_fActiveRandomAttackStart;
vector<bool> m_vbFretIsDown;
std::vector<bool> m_vbFretIsDown;
vector<RageSound> m_vKeysounds;
std::vector<RageSound> m_vKeysounds;
ThemeMetric<float> GRAY_ARROWS_Y_STANDARD;
ThemeMetric<float> GRAY_ARROWS_Y_REVERSE;