diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:13:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:36:57 (GMT) |
commit | a02e53eb947b61dd25ecd139a213d4062fbc5b62 (patch) | |
tree | d675e21e34e48bfa2589443c2a272048765fd7da /Source/cmCacheManager.cxx | |
parent | bec3487fa94093e696be170c4d85567c3c934545 (diff) | |
download | CMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.zip CMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.tar.gz CMake-a02e53eb947b61dd25ecd139a213d4062fbc5b62.tar.bz2 |
Inline unary LoadCache.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index a7777d9..9dac27b 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -28,12 +28,6 @@ cmCacheManager::cmCacheManager(cmake* cm) this->CMakeInstance = cm; } -bool cmCacheManager::LoadCache(const std::string& path) -{ - std::set<std::string> emptySet; - return this->LoadCache(path, true, emptySet, emptySet); -} - static bool ParseEntryWithoutType(const std::string& entry, std::string& var, std::string& value) |