mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
STYLE: fix line length
This commit is contained in:
@@ -83,7 +83,8 @@ bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& args)
|
||||
}
|
||||
// If GetPermissions fails, pretend like it is ok. File open will fail if
|
||||
// the file is not writable
|
||||
std::ofstream file(fileName.c_str(), overwrite?std::ios::out : std::ios::app);
|
||||
std::ofstream file(fileName.c_str(),
|
||||
overwrite?std::ios::out : std::ios::app);
|
||||
if ( !file )
|
||||
{
|
||||
std::string error = "Internal CMake error when trying to open file: ";
|
||||
|
||||
Reference in New Issue
Block a user