Fix an unused variable warning from scanbuild.
This commit is contained in:
parent
a4a1b729c6
commit
e680d43d7d
|
@ -26,14 +26,12 @@ bool cmSetTestsPropertiesCommand
|
|||
|
||||
// first collect up the list of files
|
||||
std::vector<std::string> propertyPairs;
|
||||
bool doingFiles = true;
|
||||
int numFiles = 0;
|
||||
std::vector<std::string>::const_iterator j;
|
||||
for(j= args.begin(); j != args.end();++j)
|
||||
{
|
||||
if(*j == "PROPERTIES")
|
||||
{
|
||||
doingFiles = false;
|
||||
// now loop through the rest of the arguments, new style
|
||||
++j;
|
||||
if (std::distance(j, args.end()) % 2 != 0)
|
||||
|
@ -44,15 +42,9 @@ bool cmSetTestsPropertiesCommand
|
|||
propertyPairs.insert(propertyPairs.end(), j, args.end());
|
||||
break;
|
||||
}
|
||||
else if (doingFiles)
|
||||
{
|
||||
numFiles++;
|
||||
}
|
||||
else
|
||||
{
|
||||
this->SetError("called with illegal arguments, maybe "
|
||||
"missing a PROPERTIES specifier?");
|
||||
return false;
|
||||
numFiles++;
|
||||
}
|
||||
}
|
||||
if(propertyPairs.empty())
|
||||
|
@ -62,7 +54,6 @@ bool cmSetTestsPropertiesCommand
|
|||
return false;
|
||||
}
|
||||
|
||||
|
||||
// now loop over all the targets
|
||||
int i;
|
||||
for(i = 0; i < numFiles; ++i)
|
||||
|
|
Loading…
Reference in New Issue