ENH: move from main tree

This commit is contained in:
Bill Hoffman 2006-11-10 10:54:35 -05:00
parent c8c3bd7acd
commit 664c39d09a

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;
}