summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.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/cmCacheManager.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/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index d441768..1d82f42 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -74,7 +74,7 @@ bool cmCacheManager::LoadCache(const char* path)
bool cmCacheManager::LoadCache(const char* path,
bool internal)
{
- std::set<std::string> emptySet;
+ std::set<cmStdString> emptySet;
return this->LoadCache(path, internal, emptySet, emptySet);
}
@@ -155,8 +155,8 @@ bool cmCacheManager::ParseEntry(const char* entry,
bool cmCacheManager::LoadCache(const char* path,
bool internal,
- std::set<std::string>& excludes,
- std::set<std::string>& includes)
+ std::set<cmStdString>& excludes,
+ std::set<cmStdString>& includes)
{
std::string cacheFile = path;
cacheFile += "/CMakeCache.txt";