COMP: Fix shadowed local warning.

This commit is contained in:
Brad King 2008-02-01 08:55:41 -05:00
parent 6223f3f763
commit f28f1585f6
1 changed files with 3 additions and 3 deletions

View File

@ -3207,10 +3207,10 @@ cmTargetLinkInterface* cmTarget::ComputeLinkInterface(const char* config)
}
// Construct the list of libs linked for this configuration.
cmTarget::LinkLibraryVectorType const& libs =
cmTarget::LinkLibraryVectorType const& llibs =
this->GetOriginalLinkLibraries();
for(cmTarget::LinkLibraryVectorType::const_iterator li = libs.begin();
li != libs.end(); ++li)
for(cmTarget::LinkLibraryVectorType::const_iterator li = llibs.begin();
li != llibs.end(); ++li)
{
// Skip entries that will resolve to the target itself, are empty,
// or are not meant for this configuration.