summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-11-10 10:54:35 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2006-11-10 10:54:35 -0500
commit664c39d09ab2e46f1ff3d48929b75ea288862c4b (patch)
tree730e92131798e08ccf25bb6ae190fb96ac603260
parentc8c3bd7acd88455772f0301062856e0d9622db31 (diff)
downloadcmake-664c39d09ab2e46f1ff3d48929b75ea288862c4b.tar.gz
ENH: move from main tree
-rw-r--r--Source/cmGlobalGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 662f364bde..7639331b73 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -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;
}