Codechange: remove a number of unneeded c_str() calls
This commit is contained in:
@@ -1173,7 +1173,7 @@ static void PrintLineByLine(const std::string &full_string)
|
||||
std::istringstream in(full_string);
|
||||
std::string line;
|
||||
while (std::getline(in, line)) {
|
||||
IConsolePrint(CC_DEFAULT, line.c_str());
|
||||
IConsolePrint(CC_DEFAULT, line);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user