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
@@ -230,7 +230,7 @@ public:
}
static int GetArtists( T* p, lua_State *L )
{
vector<RString> asArtists, asAltArtists;
std::vector<RString> asArtists, asAltArtists;
for (TrailEntry const &e : p->m_vEntries)
{
if( e.bSecret )
@@ -260,7 +260,7 @@ public:
static int GetTrailEntry( T* p, lua_State *L ) { TrailEntry &te = p->m_vEntries[IArg(1)]; te.PushSelf(L); return 1; }
static int GetTrailEntries( T* p, lua_State *L )
{
vector<TrailEntry*> v;
std::vector<TrailEntry*> v;
for( unsigned i = 0; i < p->m_vEntries.size(); ++i )
{
v.push_back(&p->m_vEntries[i]);