COMP: Fixed shadowed local warning.

This commit is contained in:
Brad King 2007-05-28 13:46:10 -04:00
parent 25db01d7c4
commit b4fb25941a
1 changed files with 3 additions and 3 deletions

View File

@ -2067,11 +2067,11 @@ void cmGlobalXCodeGenerator::CreateGroups(cmLocalGenerator* root,
headersVec);
cmCustomCommandLines commandLines;
std::vector<std::string> depends;
for(std::vector<std::string>::iterator i = headersVec.begin();
i != headersVec.end(); ++i)
for(std::vector<std::string>::iterator h = headersVec.begin();
h != headersVec.end(); ++i)
{
cmSourceFile* sf
= this->CurrentMakefile->GetOrCreateSource(i->c_str());
= this->CurrentMakefile->GetOrCreateSource(h->c_str());
classes.push_back(sf);
}
}