summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-08-24 14:07:00 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-08-24 14:07:00 (GMT)
commiteeeb0eb751d98c73fefd42d50f9c92fb7af1e0e8 (patch)
treeba690c7495f5f215581c8573184f175f0b0abe72
parentd5d86ecf50ea5fee2ce85c5ebe0695e477024741 (diff)
parentd8a571483950527c7f44b813a3b73eb1dbbc5435 (diff)
downloadCMake-eeeb0eb751d98c73fefd42d50f9c92fb7af1e0e8.zip
CMake-eeeb0eb751d98c73fefd42d50f9c92fb7af1e0e8.tar.gz
CMake-eeeb0eb751d98c73fefd42d50f9c92fb7af1e0e8.tar.bz2
Merge topic 'remove-unused-cmPolicies'
d8a57148 cmake: Remove unused cmPolicies member.
-rw-r--r--Source/cmake.cxx2
-rw-r--r--Source/cmake.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 62b3f83..1f5c4d4 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -133,7 +133,6 @@ cmake::cmake()
this->ClearBuildSystem = false;
this->FileComparison = new cmFileTimeComparison;
- this->Policies = new cmPolicies();
this->State = new cmState(this);
this->CurrentSnapshot = this->State->CreateBaseSnapshot();
@@ -171,7 +170,6 @@ cmake::cmake()
cmake::~cmake()
{
delete this->CacheManager;
- delete this->Policies;
delete this->State;
if (this->GlobalGenerator)
{
diff --git a/Source/cmake.h b/Source/cmake.h
index 31f55ac..8ac8897 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -27,7 +27,6 @@ class cmVariableWatch;
class cmFileTimeComparison;
class cmExternalMakefileProjectGenerator;
class cmDocumentationSection;
-class cmPolicies;
class cmTarget;
class cmGeneratedFileStream;
@@ -340,7 +339,6 @@ protected:
void AddExtraGenerator(const std::string& name,
CreateExtraGeneratorFunctionType newFunction);
- cmPolicies *Policies;
cmGlobalGenerator *GlobalGenerator;
cmCacheManager *CacheManager;
std::map<std::string, WarningLevel> WarningLevels;