ERR: Fixed signed/unsigned warning.
This commit is contained in:
parent
f87d7039e2
commit
6435f608b9
|
@ -51,7 +51,7 @@ bool cmGetFilenameComponentCommand::InitialPass(std::vector<std::string> const&
|
|||
}
|
||||
else if (args[2] == "PROGRAM")
|
||||
{
|
||||
for(int i=2; i < args.size(); ++i)
|
||||
for(unsigned int i=2; i < args.size(); ++i)
|
||||
{
|
||||
if(args[i] == "PROGRAM_ARGS")
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue