diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-29 20:07:07 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-29 20:07:07 (GMT) |
commit | 5bf55d1590d2e92180b51c82b397cac8dd4c6d64 (patch) | |
tree | a17c7406d52ff3dd518554e1455d4997b0338047 /Source/cmGlobalGenerator.cxx | |
parent | 64a6ad497523b68efe127b27ad2a7fdbe73cbfbc (diff) | |
download | CMake-5bf55d1590d2e92180b51c82b397cac8dd4c6d64.zip CMake-5bf55d1590d2e92180b51c82b397cac8dd4c6d64.tar.gz CMake-5bf55d1590d2e92180b51c82b397cac8dd4c6d64.tar.bz2 |
ENH: shorten the symbols a bit and remove maps of std::string for map of cmStdString
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 098c9c9..beef256 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -436,7 +436,7 @@ void cmGlobalGenerator::Configure() // now do it this->RecursiveConfigure(lg,0.0f,0.9f); - std::set<std::string> notFoundMap; + std::set<cmStdString> notFoundMap; // after it is all done do a ConfigureFinalPass cmCacheManager* manager = 0; for (i = 0; i < m_LocalGenerators.size(); ++i) @@ -480,7 +480,7 @@ void cmGlobalGenerator::Configure() if(notFoundMap.size()) { std::string notFoundVars; - for(std::set<std::string>::iterator ii = notFoundMap.begin(); + for(std::set<cmStdString>::iterator ii = notFoundMap.begin(); ii != notFoundMap.end(); ++ii) { notFoundVars += *ii; |