diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-04 18:24:11 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-05 08:26:10 (GMT) |
commit | 23bb5d225b772f7e18dab16375c7620c99d62814 (patch) | |
tree | c1520dec6854661481a88539fc77b0f611b983f9 | |
parent | 510562e3e7b9387bebe14060b147ec3022ee58a3 (diff) | |
download | CMake-23bb5d225b772f7e18dab16375c7620c99d62814.zip CMake-23bb5d225b772f7e18dab16375c7620c99d62814.tar.gz CMake-23bb5d225b772f7e18dab16375c7620c99d62814.tar.bz2 |
cmCacheManager: Remove use of intermediate overload.
-rw-r--r-- | Source/cmCacheManager.cxx | 3 |
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, |