mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
fixed compiler warning
This commit is contained in:
@@ -107,7 +107,8 @@ bool cmIfCommand::InitialPass(std::vector<std::string> const& args)
|
||||
if (!isValid)
|
||||
{
|
||||
std::string err = "An IF command had incorrect arguments: ";
|
||||
for(int i =0; i < args.size(); ++i)
|
||||
unsigned int i;
|
||||
for(i =0; i < args.size(); ++i)
|
||||
{
|
||||
err += args[i];
|
||||
err += " ";
|
||||
|
||||
Reference in New Issue
Block a user