diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-06-10 07:54:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-06-10 13:27:59 (GMT) |
commit | 7066218e792927cb6494ce73e834b8ddb3d275e6 (patch) | |
tree | 989defc434a874917fa71548339af3de667daf4d /Source/cmake.h | |
parent | 98aafb2ad64daa0617b3a71ec61f692d5aa205ce (diff) | |
download | CMake-7066218e792927cb6494ce73e834b8ddb3d275e6.zip CMake-7066218e792927cb6494ce73e834b8ddb3d275e6.tar.gz CMake-7066218e792927cb6494ce73e834b8ddb3d275e6.tar.bz2 |
cmake: Kill cmake::CacheManager and its getter
This member variable is never initialized and has apparently moved
to cmState.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 4958a05..23726a2 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -209,9 +209,6 @@ public: return this->GeneratorToolset; } - ///! get the cmCachemManager used by this invocation of cmake - cmCacheManager* GetCacheManager() { return this->CacheManager; } - const std::vector<std::string>& GetSourceExtensions() const { return this->SourceFileExtensions; @@ -421,7 +418,6 @@ protected: CreateExtraGeneratorFunctionType newFunction); cmGlobalGenerator* GlobalGenerator; - cmCacheManager* CacheManager; std::map<std::string, DiagLevel> DiagLevels; std::string GeneratorPlatform; std::string GeneratorToolset; |