From d9d19a4d68f8874d5c7f98c5c952f3b2fffb9ad3 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Sun, 2 Feb 2003 11:45:44 -0500 Subject: fix warning --- Source/cmGlobalGenerator.cxx | 8 ++++---- 1 file 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::iterator i = notFoundMap.begin(); - i != notFoundMap.end(); ++i) + for(std::set::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)"; -- cgit v0.12