From 10dc0bcfa2e5e415485bca52352ddb086d50d88f Mon Sep 17 00:00:00 2001 From: archshift Date: Wed, 6 Aug 2014 03:01:48 -0700 Subject: [PATCH] Removed `using std::string` `using` classes from namespaces can lead to lack of clarity as to where the class is coming form. --- pcsx2/Dump.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcsx2/Dump.cpp b/pcsx2/Dump.cpp index 4d2324b6f1..4d683f15c5 100644 --- a/pcsx2/Dump.cpp +++ b/pcsx2/Dump.cpp @@ -25,7 +25,6 @@ #include "Utilities/AsciiFile.h" using namespace R5900; -using std::string; // fixme: currently should not be uncommented. //#define TEST_BROKEN_DUMP_ROUTINES @@ -219,7 +218,7 @@ void iDumpBlock( int startpc, u8 * ptr ) for ( uint i = startpc; i < s_nEndBlock; i += 4 ) { - string output; + std::string output; disR5900Fasm( output, memRead32( i ), i ); eff.Printf( output.c_str() ); }