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:
parent
f62dffa9f0
commit
537d09e1d4
|
@ -267,7 +267,7 @@ static bool PerformAssembly(const std::string& input_name, const std::string& ou
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string source;
|
std::string source;
|
||||||
if (File::ReadFileToString(input_name.c_str(), source))
|
if (File::ReadFileToString(input_name, source))
|
||||||
{
|
{
|
||||||
if (multiple)
|
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++)
|
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());
|
printf("ERROR reading %s, skipping...\n", files[i].c_str());
|
||||||
lines--;
|
lines--;
|
||||||
|
|
Loading…
Reference in New Issue