Remove 'using std::string'

* This will make it easier to replace std::string with rdcstr in future
This commit is contained in:
baldurk
2019-05-17 16:32:56 +01:00
parent 6d47b35cd9
commit a965a3a703
104 changed files with 803 additions and 869 deletions
+3 -3
View File
@@ -194,12 +194,12 @@ static uint32_t IsTargetControlConnected()
static uint32_t LaunchReplayUI(uint32_t connectTargetControl, const char *cmdline)
{
string replayapp = FileIO::GetReplayAppFilename();
std::string replayapp = FileIO::GetReplayAppFilename();
if(replayapp.empty())
return 0;
string cmd = cmdline ? cmdline : "";
std::string cmd = cmdline ? cmdline : "";
if(connectTargetControl)
cmd += StringFormat::Fmt(" --targetcontrol localhost:%u",
RenderDoc::Inst().GetTargetControlIdent());
@@ -312,7 +312,7 @@ extern "C" RENDERDOC_API int RENDERDOC_CC RENDERDOC_GetAPI(RENDERDOC_Version ver
int ret = 0;
int major = 0, minor = 0, patch = 0;
string supportedVersions = "";
std::string supportedVersions = "";
#define API_VERSION_HANDLE(enumver, actualver) \
supportedVersions += " " STRINGIZE(CONCAT(API_, enumver)); \