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
@@ -168,13 +168,13 @@ bool NotesWriterJson::WriteSong( const RString &sFile, const Song &out, bool bWr
FOREACH_BackgroundLayer( bl )
{
Json::Value &root3 = root2[bl];
const vector<BackgroundChange> &vBgc = out.GetBackgroundChanges(bl);
const std::vector<BackgroundChange> &vBgc = out.GetBackgroundChanges(bl);
JsonUtil::SerializeVectorObjects( vBgc, Serialize, root3 );
}
}
{
const vector<BackgroundChange> &vBgc = out.GetForegroundChanges();
const std::vector<BackgroundChange> &vBgc = out.GetForegroundChanges();
JsonUtil::SerializeVectorObjects( vBgc, Serialize, root["ForegroundChanges"] );
}
@@ -182,7 +182,7 @@ bool NotesWriterJson::WriteSong( const RString &sFile, const Song &out, bool bWr
if( bWriteSteps )
{
vector<const Steps*> vpSteps;
std::vector<const Steps*> vpSteps;
for (Steps * iter : out.GetAllSteps())
{
if( iter->IsAutogen() )