summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index fc37952..e4754b3 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -1198,12 +1198,12 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
std::vector<std::string>& frameworks = target.GetFrameworks();
if(frameworks.size())
{
- for(std::vector<std::string>::iterator i = frameworks.begin();
- i != frameworks.end(); ++i)
+ for(std::vector<std::string>::iterator fmIt = frameworks.begin();
+ fmIt != frameworks.end(); ++fmIt)
{
- if(emitted.insert(*i).second)
+ if(emitted.insert(*fmIt).second)
{
- fdirs += this->XCodeEscapePath(i->c_str());
+ fdirs += this->XCodeEscapePath(fmIt->c_str());
fdirs += " ";
}
}