diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-16 17:23:22 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-16 17:23:22 (GMT) |
commit | 43fd40fe217db929eda91af24346c59bc303081a (patch) | |
tree | daf41e9ecf6446272427c278ba9b690678302824 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 0883dee7f039fbad43fb237cafdcf09796ed6199 (diff) | |
download | CMake-43fd40fe217db929eda91af24346c59bc303081a.zip CMake-43fd40fe217db929eda91af24346c59bc303081a.tar.gz CMake-43fd40fe217db929eda91af24346c59bc303081a.tar.bz2 |
ENH: fix warning
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 6 |
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 " |