diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-26 12:40:51 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-26 12:40:51 (GMT) |
commit | 0ea4c7b784a31569f582f0cd2de0341465780a7c (patch) | |
tree | 725f4a2cdc54ccd7025abca8de87033dd014fdb7 /Source/cmTryRunCommand.cxx | |
parent | 9202d274652ba76be73ff3dcace5af245745e512 (diff) | |
download | CMake-0ea4c7b784a31569f582f0cd2de0341465780a7c.zip CMake-0ea4c7b784a31569f582f0cd2de0341465780a7c.tar.gz CMake-0ea4c7b784a31569f582f0cd2de0341465780a7c.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmTryRunCommand.cxx')
-rw-r--r-- | Source/cmTryRunCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx index 1e0402d..cbd2cd4 100644 --- a/Source/cmTryRunCommand.cxx +++ b/Source/cmTryRunCommand.cxx @@ -313,7 +313,8 @@ void cmTryRunCommand::DoNotRunExecutable(const std::string& runArgs, static bool firstTryRun = true; std::string fileName = this->Makefile->GetHomeOutputDirectory(); fileName += "/TryRunResults.cmake"; - std::ofstream file(fileName.c_str(), firstTryRun?std::ios::out : std::ios::app); + std::ofstream file(fileName.c_str(), + firstTryRun ? std::ios::out : std::ios::app); if ( file ) { if (firstTryRun) |