Remove warning about sign and unsigned

This commit is contained in:
Andy Cedilnik 2002-03-18 11:59:23 -05:00
parent 5bbae88569
commit f15cce92f4
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ int main(int ac, char** av)
}
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());
}