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

@@ -27,7 +27,7 @@ bool cmAbstractFilesCommand::Invoke(std::vector<std::string>& args)
j != args.end(); ++j)
{
std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
for(int i = 0; i < Classes.size(); i++)
for(unsigned int i = 0; i < Classes.size(); i++)
{
if(Classes[i].m_ClassName == (*j))
{