diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 12:26:56 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:36:58 (GMT) |
commit | 435a2f3ccb51acf119cfa1671f1c5b344a7d47a0 (patch) | |
tree | 1ed8f4254834e76abddd8e52d5f0aaa0c5e2a186 /Source/cmCacheManager.cxx | |
parent | 062ed22ec43809068526706d2600297095412911 (diff) | |
download | CMake-435a2f3ccb51acf119cfa1671f1c5b344a7d47a0.zip CMake-435a2f3ccb51acf119cfa1671f1c5b344a7d47a0.tar.gz CMake-435a2f3ccb51acf119cfa1671f1c5b344a7d47a0.tar.bz2 |
cmCacheManager: Port away from cmake instance.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 9dac27b..bfa60b3 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -21,11 +21,10 @@ #include <cmsys/FStream.hxx> #include <cmsys/RegularExpression.hxx> -cmCacheManager::cmCacheManager(cmake* cm) +cmCacheManager::cmCacheManager() { this->CacheMajorVersion = 0; this->CacheMinorVersion = 0; - this->CMakeInstance = cm; } static bool ParseEntryWithoutType(const std::string& entry, @@ -671,7 +670,6 @@ void cmCacheManager::AddCacheEntry(const std::string& key, } e.SetProperty("HELPSTRING", helpString? helpString : "(This variable does not exist and should not be used)"); - this->CMakeInstance->UnwatchUnusedCli(key); } bool cmCacheManager::CacheIterator::IsAtEnd() const |