Browse Source

cmake: Kill cmake::CacheManager and its getter

This member variable is never initialized and has apparently moved
to cmState.
Tobias Hunger 9 years ago
parent
commit
7066218e79
1 changed files with 0 additions and 4 deletions
  1. 0 4
      Source/cmake.h

+ 0 - 4
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;