DSPTool: Remove unnecessary c_str() calls

These functions already accept std::string instances, so c_str here just
causes an unnecessary copy of the string to be made.
This commit is contained in:
Lioncash 2018-06-22 16:38:12 -04:00
parent f62dffa9f0
commit 537d09e1d4
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ static bool PerformAssembly(const std::string& input_name, const std::string& ou
}
std::string source;
if (File::ReadFileToString(input_name.c_str(), source))
if (File::ReadFileToString(input_name, source))
{
if (multiple)
{
@ -291,7 +291,7 @@ static bool PerformAssembly(const std::string& input_name, const std::string& ou
for (int i = 0; i < lines; i++)
{
if (!File::ReadFileToString(files[i].c_str(), currentSource))
if (!File::ReadFileToString(files[i], currentSource))
{
printf("ERROR reading %s, skipping...\n", files[i].c_str());
lines--;