mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-26 10:48:38 -06:00
ERR: Fixed warnings (int->unsigned int and a few others).
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user