summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-10 13:13:08 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-10 13:36:57 (GMT)
commita02e53eb947b61dd25ecd139a213d4062fbc5b62 (patch)
treed675e21e34e48bfa2589443c2a272048765fd7da /Source/cmake.cxx
parentbec3487fa94093e696be170c4d85567c3c934545 (diff)
downloadCMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.zip
CMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.tar.gz
CMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.tar.bz2
Inline unary LoadCache.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 8016e41..ad5f6b7 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1752,7 +1752,8 @@ int cmake::LoadCache()
bool cmake::LoadCache(const std::string& path)
{
- return this->CacheManager->LoadCache(path);
+ std::set<std::string> emptySet;
+ return this->LoadCache(path, true, emptySet, emptySet);
}
bool cmake::LoadCache(const std::string& path, bool internal,