STYLE: yeah yeah.

This commit is contained in:
Sebastien Barre 2008-03-14 16:39:20 -04:00
parent 2edb9c4e32
commit 3b1bbcfe15
1 changed files with 4 additions and 2 deletions

View File

@ -402,7 +402,8 @@ bool cmListCommand
{ {
if(args.size() < 2) if(args.size() < 2)
{ {
this->SetError("sub-command REMOVE_DUPLICATES requires a list as an argument."); this->SetError(
"sub-command REMOVE_DUPLICATES requires a list as an argument.");
return false; return false;
} }
@ -411,7 +412,8 @@ bool cmListCommand
std::vector<std::string> varArgsExpanded; std::vector<std::string> varArgsExpanded;
if ( !this->GetList(varArgsExpanded, listName.c_str()) ) if ( !this->GetList(varArgsExpanded, listName.c_str()) )
{ {
this->SetError("sub-command REMOVE_DUPLICATES requires list to be present."); this->SetError(
"sub-command REMOVE_DUPLICATES requires list to be present.");
return false; return false;
} }