diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-02-02 16:45:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-02-02 16:45:44 (GMT) |
commit | d9d19a4d68f8874d5c7f98c5c952f3b2fffb9ad3 (patch) | |
tree | d7c573e4ac23be2af03030d5681f015f44974e16 /Source | |
parent | 94b11a6ee476a4a57eed618fbf136f08a27f5d20 (diff) | |
download | CMake-d9d19a4d68f8874d5c7f98c5c952f3b2fffb9ad3.zip CMake-d9d19a4d68f8874d5c7f98c5c952f3b2fffb9ad3.tar.gz CMake-d9d19a4d68f8874d5c7f98c5c952f3b2fffb9ad3.tar.bz2 |
fix warning
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index f5d995a..774feca 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -325,14 +325,14 @@ void cmGlobalGenerator::Configure() if(notFoundMap.size()) { std::string notFoundVars; - for(std::set<std::string>::iterator i = notFoundMap.begin(); - i != notFoundMap.end(); ++i) + for(std::set<std::string>::iterator ii = notFoundMap.begin(); + ii != notFoundMap.end(); ++ii) { - notFoundVars += *i; + notFoundVars += *ii; if(manager) { cmCacheManager::CacheIterator it = - manager->GetCacheIterator(i->c_str()); + manager->GetCacheIterator(ii->c_str()); if(it.GetPropertyAsBool("ADVANCED")) { notFoundVars += " (ADVANCED)"; |