summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-09-29 20:07:07 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-09-29 20:07:07 (GMT)
commit5bf55d1590d2e92180b51c82b397cac8dd4c6d64 (patch)
treea17c7406d52ff3dd518554e1455d4997b0338047 /Source/cmMakefile.cxx
parent64a6ad497523b68efe127b27ad2a7fdbe73cbfbc (diff)
downloadCMake-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/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 87ce942..c19953a 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1413,7 +1413,7 @@ const char* cmMakefile::GetSafeDefinition(const char* def) const
std::vector<std::string> cmMakefile::GetDefinitions(int cacheonly /* = 0 */) const
{
- std::map<std::string, int> definitions;
+ std::map<cmStdString, int> definitions;
if ( !cacheonly )
{
DefinitionMap::const_iterator it;
@@ -1430,7 +1430,7 @@ std::vector<std::string> cmMakefile::GetDefinitions(int cacheonly /* = 0 */) con
std::vector<std::string> res;
- std::map<std::string, int>::iterator fit;
+ std::map<cmStdString, int>::iterator fit;
for ( fit = definitions.begin(); fit != definitions.end(); fit ++ )
{
res.push_back(fit->first);