diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-16 12:42:14 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-16 12:42:14 (GMT) |
commit | 70d8c0f3d8ee706504d72b825349b4f6bfb022fe (patch) | |
tree | ef6fa24c602a88867414fea34f687cd890820f99 /Source/cmListCommand.cxx | |
parent | 8224fee5dfc4954517a5406d4bb81203d3e8386f (diff) | |
download | CMake-70d8c0f3d8ee706504d72b825349b4f6bfb022fe.zip CMake-70d8c0f3d8ee706504d72b825349b4f6bfb022fe.tar.gz CMake-70d8c0f3d8ee706504d72b825349b4f6bfb022fe.tar.bz2 |
STYLE: Fix style
Diffstat (limited to 'Source/cmListCommand.cxx')
-rw-r--r-- | Source/cmListCommand.cxx | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx index a252dc0..49bb354 100644 --- a/Source/cmListCommand.cxx +++ b/Source/cmListCommand.cxx @@ -9,8 +9,8 @@ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ @@ -28,7 +28,7 @@ bool cmListCommand::InitialPass(std::vector<std::string> const& args) this->SetError("must be called with at least one argument."); return false; } - + const std::string &subCommand = args[0]; if(subCommand == "LENGTH") { @@ -54,7 +54,7 @@ bool cmListCommand::InitialPass(std::vector<std::string> const& args) { return this->HandleRemoveItemCommand(args); } - + std::string e = "does not recognize sub-command "+subCommand; this->SetError(e.c_str()); return false; @@ -151,8 +151,8 @@ bool cmListCommand::HandleGetCommand(std::vector<std::string> const& args) if ( item < 0 || nitem <= (size_t)item ) { cmOStringStream str; - str << "index: " << item << " out of range (-" - << varArgsExpanded.size() << ", " + str << "index: " << item << " out of range (-" + << varArgsExpanded.size() << ", " << varArgsExpanded.size()-1 << ")"; this->SetError(str.str().c_str()); return false; @@ -223,8 +223,8 @@ bool cmListCommand::HandleInsertCommand(std::vector<std::string> const& args) if ( item < 0 || nitem <= (size_t)item ) { cmOStringStream str; - str << "index: " << item << " out of range (-" - << varArgsExpanded.size() << ", " + str << "index: " << item << " out of range (-" + << varArgsExpanded.size() << ", " << (varArgsExpanded.size() == 0?0:(varArgsExpanded.size()-1)) << ")"; this->SetError(str.str().c_str()); return false; @@ -299,7 +299,8 @@ bool cmListCommand } //---------------------------------------------------------------------------- -bool cmListCommand::HandleRemoveAtCommand(std::vector<std::string> const& args) +bool cmListCommand::HandleRemoveAtCommand( + std::vector<std::string> const& args) { if(args.size() < 3) { @@ -329,8 +330,8 @@ bool cmListCommand::HandleRemoveAtCommand(std::vector<std::string> const& args) if ( item < 0 || nitem <= (size_t)item ) { cmOStringStream str; - str << "index: " << item << " out of range (-" - << varArgsExpanded.size() << ", " + str << "index: " << item << " out of range (-" + << varArgsExpanded.size() << ", " << varArgsExpanded.size()-1 << ")"; this->SetError(str.str().c_str()); return false; |