mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-15 03:48:02 +08:00
fix warning
This commit is contained in:
@@ -48,7 +48,7 @@ bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> const& args)
|
||||
this->SetError("called with incorrect number of arguments");
|
||||
return false;
|
||||
}
|
||||
for(int i =0; i < args.size(); ++i)
|
||||
for(unsigned int i =0; i < args.size(); ++i)
|
||||
{
|
||||
std::string variable = args[i];
|
||||
variable += "-ADVANCED";
|
||||
|
Reference in New Issue
Block a user