ENH: remove warning

This commit is contained in:
Bill Hoffman 2006-11-10 09:32:27 -05:00
parent 3b7005c554
commit dd8d1e8c8d
1 changed files with 2 additions and 2 deletions

View File

@ -604,9 +604,9 @@ bool cmGlobalGenerator::IsDependedOn(const char* project,
l != targets.end(); l++)
{
cmTarget& target = l->second;
std::set<cmStdString>::const_iterator i =
std::set<cmStdString>::const_iterator pos =
target.GetUtilities().find(targetIn->GetName());
if(i != target.GetUtilities().end())
if(pos != target.GetUtilities().end())
{
return true;
}