diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-23 14:14:37 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-23 14:14:37 (GMT) |
commit | fe56002a167df5d5c28de9e5a5c0b4bb1660fccf (patch) | |
tree | b0336a55dcd8de39007262b8a15510e1a6bba382 /Source/cmake.cxx | |
parent | 5d30cfc5f70e9bf7f604a64ca47d4c5cd213d11f (diff) | |
download | CMake-fe56002a167df5d5c28de9e5a5c0b4bb1660fccf.zip CMake-fe56002a167df5d5c28de9e5a5c0b4bb1660fccf.tar.gz CMake-fe56002a167df5d5c28de9e5a5c0b4bb1660fccf.tar.bz2 |
Fix long lines for KWStyle
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index cb68f221..07abc8e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -4499,12 +4499,13 @@ void cmake::RunCheckForUnusedVariables() const if(this->WarnUnusedCli) { std::map<std::string, bool>::const_iterator it; - for(it = this->UsedCliVariables.begin(); it != this->UsedCliVariables.end(); ++it) + for(it = this->UsedCliVariables.begin(); + it != this->UsedCliVariables.end(); ++it) { if(!it->second) { - std::string message = "warning: The variable, '" + it->first + "', given " - "on the command line, was not used within the build."; + std::string message = "warning: The variable, '" + it->first + + "', given on the command line, was not used within the build."; cmSystemTools::Message(message.c_str()); } } |