summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
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";