Remove c_str() calls from stream arguments.

Mostly automated:

git grep -l '.c_str() <<' | xargs sed -i 's|\.c_str() <<| <<|g'
This commit is contained in:
Daniel Pfeifer
2016-06-06 23:53:32 +02:00
parent ba5fb16519
commit fa277b29e4
21 changed files with 81 additions and 86 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ bool cmGlobalKdevelopGenerator::CreateFilelistFile(
cmSystemTools::ReplaceString(tmp, projectDir.c_str(), "");
// only put relative paths
if (!tmp.empty() && tmp[0] != '/') {
fout << tmp.c_str() << "\n";
fout << tmp << "\n";
}
}
return true;