summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 3354e59..ee5ff4a 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -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);
}
}