summaryrefslogtreecommitdiff
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-04 20:24:11 +0200
committerStephen Kelly <steveire@gmail.com>2015-04-05 10:26:10 +0200
commit23bb5d225b772f7e18dab16375c7620c99d62814 (patch)
treec1520dec6854661481a88539fc77b0f611b983f9 /Source/cmCacheManager.cxx
parent510562e3e7b9387bebe14060b147ec3022ee58a3 (diff)
downloadcmake-23bb5d225b772f7e18dab16375c7620c99d62814.tar.gz
cmCacheManager: Remove use of intermediate overload.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index 0c77891e79..30791ff3de 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -84,7 +84,8 @@ bool cmCacheManager::LoadCache(cmMakefile* mf)
bool cmCacheManager::LoadCache(const std::string& path)
{
- return this->LoadCache(path,true);
+ std::set<std::string> emptySet;
+ return this->LoadCache(path, true, emptySet, emptySet);
}
bool cmCacheManager::LoadCache(const std::string& path,