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
@@ -62,7 +62,7 @@ public:
|
||||
|
||||
// m_ColumnRenderers belongs in the protected section, but it's here in
|
||||
// public so that the Lua API can access it. -Kyz
|
||||
vector<NoteColumnRenderer> m_ColumnRenderers;
|
||||
std::vector<NoteColumnRenderer> m_ColumnRenderers;
|
||||
|
||||
protected:
|
||||
void CacheNoteSkin( const RString &sNoteSkin );
|
||||
@@ -109,7 +109,7 @@ protected:
|
||||
NoteFieldRenderArgs m_FieldRenderArgs;
|
||||
|
||||
/* All loaded note displays, mapped by their name. */
|
||||
map<RString, NoteDisplayCols *> m_NoteDisplays;
|
||||
std::map<RString, NoteDisplayCols *> m_NoteDisplays;
|
||||
NoteDisplayCols *m_pCurDisplay;
|
||||
NoteDisplayCols *m_pDisplays[NUM_PlayerNumber];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user