summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-04 18:24:11 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-05 08:26:10 (GMT)
commit23bb5d225b772f7e18dab16375c7620c99d62814 (patch)
treec1520dec6854661481a88539fc77b0f611b983f9 /Source/cmCacheManager.cxx
parent510562e3e7b9387bebe14060b147ec3022ee58a3 (diff)
downloadCMake-23bb5d225b772f7e18dab16375c7620c99d62814.zip
CMake-23bb5d225b772f7e18dab16375c7620c99d62814.tar.gz
CMake-23bb5d225b772f7e18dab16375c7620c99d62814.tar.bz2
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 0c77891..30791ff 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,