summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2010-09-16 15:49:58 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2010-09-16 15:49:58 (GMT)
commitf117423336a91f4f50f031d0acc892d4c10316c3 (patch)
treec9a9c684da2b79afc7667ffe9922f44db09551bf /Source/cmake.cxx
parente49a935c20550482e9f92ceb05d1f2a0bc519c91 (diff)
downloadCMake-f117423336a91f4f50f031d0acc892d4c10316c3.zip
CMake-f117423336a91f4f50f031d0acc892d4c10316c3.tar.gz
CMake-f117423336a91f4f50f031d0acc892d4c10316c3.tar.bz2
Fix line lengths to be no more than 78
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 757ad6f..007f52d 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -643,12 +643,14 @@ void cmake::SetArgs(const std::vector<std::string>& args)
}
else if(arg.find("--no-warn-unused-cli",0) == 0)
{
- std::cout << "Not finding unused variables given on the command line.\n";
+ std::cout << "Not searching for unused variables given on the " <<
+ "command line.\n";
this->SetWarnUnusedCli(false);
}
else if(arg.find("--check-system-vars",0) == 0)
{
- std::cout << "Also check system files when warning about unused and uninitialized variables.\n";
+ std::cout << "Also check system files when warning about unused and " <<
+ "uninitialized variables.\n";
this->SetCheckSystemVars(true);
}
else if(arg.find("-G",0) == 0)