Merge topic 'remove-unused-cmPolicies'
d8a57148
cmake: Remove unused cmPolicies member.
This commit is contained in:
commit
eeeb0eb751
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue