fix warning

This commit is contained in:
Bill Hoffman 2001-11-28 07:14:25 -05:00
parent 10097d7685
commit f901b9c340
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> const& args)
this->SetError("called with incorrect number of arguments"); this->SetError("called with incorrect number of arguments");
return false; return false;
} }
for(int i =0; i < args.size(); ++i) for(unsigned int i =0; i < args.size(); ++i)
{ {
std::string variable = args[i]; std::string variable = args[i];
variable += "-ADVANCED"; variable += "-ADVANCED";