From 7066218e792927cb6494ce73e834b8ddb3d275e6 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 10 Jun 2016 09:54:07 +0200 Subject: [PATCH] cmake: Kill cmake::CacheManager and its getter This member variable is never initialized and has apparently moved to cmState. --- Source/cmake.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/cmake.h b/Source/cmake.h index 4958a05dc6..23726a23f4 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& GetSourceExtensions() const { return this->SourceFileExtensions; @@ -421,7 +418,6 @@ protected: CreateExtraGeneratorFunctionType newFunction); cmGlobalGenerator* GlobalGenerator; - cmCacheManager* CacheManager; std::map DiagLevels; std::string GeneratorPlatform; std::string GeneratorToolset;