Remove warning about sign and unsigned
This commit is contained in:
parent
5bbae88569
commit
f15cce92f4
@ -49,7 +49,7 @@ int main(int ac, char** av)
|
|||||||
}
|
}
|
||||||
if ( args[1] == "remove" && args.size() > 2 )
|
if ( args[1] == "remove" && args.size() > 2 )
|
||||||
{
|
{
|
||||||
for ( int cc = 2; cc < args.size(); cc ++ )
|
for ( std::string::size_type cc = 2; cc < args.size(); cc ++ )
|
||||||
{
|
{
|
||||||
cmSystemTools::RemoveFile(args[cc].c_str());
|
cmSystemTools::RemoveFile(args[cc].c_str());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user