ERR: Fixed warnings (int->unsigned int and a few others).

This commit is contained in:
Brad King
2001-02-23 10:40:13 -05:00
parent 8f0ac1e9bd
commit d31ce24413
9 changed files with 45 additions and 40 deletions

View File

@@ -45,7 +45,7 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args)
cmSystemTools::GetPath(path);
for(; i != args.end(); ++i)
{
for(int k=0; k < path.size(); k++)
for(unsigned int k=0; k < path.size(); k++)
{
std::string tryPath = path[k];
tryPath += "/";