summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-05-16 17:23:22 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-05-16 17:23:22 (GMT)
commit43fd40fe217db929eda91af24346c59bc303081a (patch)
treedaf41e9ecf6446272427c278ba9b690678302824 /Source/cmGlobalXCodeGenerator.cxx
parent0883dee7f039fbad43fb237cafdcf09796ed6199 (diff)
downloadCMake-43fd40fe217db929eda91af24346c59bc303081a.zip
CMake-43fd40fe217db929eda91af24346c59bc303081a.tar.gz
CMake-43fd40fe217db929eda91af24346c59bc303081a.tar.bz2
ENH: fix warning
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 4a1d673..d9e2451 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2344,12 +2344,12 @@ cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
universal += "/";
universal += t->GetName();
universal += ".build/Objects-normal/";
- for( std::vector<std::string>::iterator i =
+ for( std::vector<std::string>::iterator arch =
this->Architectures.begin();
- i != this->Architectures.end(); ++i)
+ arch != this->Architectures.end(); ++arch)
{
std::string universalFile = universal;
- universalFile += *i;
+ universalFile += *arch;
universalFile += "/";
universalFile += t->GetName();
makefileStream << "\t/bin/rm -f "