mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
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:
@@ -72,7 +72,7 @@ int main(int argc, char* argv[])
|
||||
|
||||
std::string scriptDirectory =
|
||||
cmsys::SystemTools::GetFilenamePath(fullScriptPath);
|
||||
ofs << fullScriptPath.c_str() << std::endl;
|
||||
ofs << fullScriptPath << std::endl;
|
||||
std::vector<const char*> args;
|
||||
args.push_back(fullScriptPath.c_str());
|
||||
int cc;
|
||||
|
||||
Reference in New Issue
Block a user