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
@@ -11,7 +11,7 @@
namespace
{
map<GLenum, RString> g_Strings;
std::map<GLenum, RString> g_Strings;
void InitStringMap()
{
static bool bInitialized = false;
@@ -44,11 +44,11 @@ RString RageDisplay_Legacy_Helpers::GLToString( GLenum e )
return ssprintf( "%i", int(e) );
}
/*
static void GetGLExtensions( set<string> &ext )
static void GetGLExtensions( std::set<string> &ext )
{
const char *szBuf = (const char *) glGetString( GL_EXTENSIONS );
vector<RString> asList;
std::vector<RString> asList;
split( szBuf, " ", asList );
for( unsigned i = 0; i < asList.size(); ++i )