mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 23:19:58 -06:00
ERR: Fixed warnings (int->unsigned int and a few others).
This commit is contained in:
@@ -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 += "/";
|
||||
|
||||
Reference in New Issue
Block a user