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
@@ -73,7 +73,7 @@ static void EmptyDir( RString dir )
{
ASSERT(dir[dir.size()-1] == '/');
vector<RString> asCacheFileNames;
std::vector<RString> asCacheFileNames;
GetDirListing( dir, asCacheFileNames );
for( unsigned i=0; i<asCacheFileNames.size(); i++ )
{
@@ -95,8 +95,8 @@ void SongCacheIndex::ReadCacheIndex()
EmptyDir( SpecialFiles::CACHE_DIR );
EmptyDir( SpecialFiles::CACHE_DIR+"Songs/" );
EmptyDir( SpecialFiles::CACHE_DIR+"Courses/" );
vector<RString> ImageDir;
std::vector<RString> ImageDir;
split( CommonMetrics::IMAGES_TO_CACHE, ",", ImageDir );
for( unsigned c=0; c<ImageDir.size(); c++ )
EmptyDir( SpecialFiles::CACHE_DIR+ImageDir[c]+"/" );