BUG: fix for broken borland compiler
This commit is contained in:
parent
6b2cc486ee
commit
3b7005c554
|
@ -604,8 +604,9 @@ bool cmGlobalGenerator::IsDependedOn(const char* project,
|
|||
l != targets.end(); l++)
|
||||
{
|
||||
cmTarget& target = l->second;
|
||||
if(target.GetUtilities().find(targetIn->GetName()) !=
|
||||
target.GetUtilities().end())
|
||||
std::set<cmStdString>::const_iterator i =
|
||||
target.GetUtilities().find(targetIn->GetName());
|
||||
if(i != target.GetUtilities().end())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue