diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:12:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:12:13 (GMT) |
commit | cac30b5ff8f7034b5290700a4dee28c84e001ac9 (patch) | |
tree | 1fce61b7bd143361ff8be6861fde27abb1732e10 /Source/cmWriteFileCommand.cxx | |
parent | daa37f116340fa86c1a511847fe65ad999095fa0 (diff) | |
download | CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.zip CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.gz CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r-- | Source/cmWriteFileCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx index 8798abb..08d02b8 100644 --- a/Source/cmWriteFileCommand.cxx +++ b/Source/cmWriteFileCommand.cxx @@ -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: "; |