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
@@ -5,7 +5,7 @@
const wchar_t FontCharmaps::M_SKIP = 0xFEFF;
static map<RString,const wchar_t*> charmaps;
static std::map<RString, const wchar_t*> charmaps;
using namespace FontCharmaps;
@@ -224,7 +224,7 @@ const wchar_t *FontCharmaps::get_char_map(RString name)
name.MakeLower();
map<RString,const wchar_t*>::const_iterator i = charmaps.find(name);
std::map<RString, const wchar_t*>::const_iterator i = charmaps.find(name);
if(i == charmaps.end())
return nullptr;