cmMakefile: Remove unused GetPolicies method.

This commit is contained in:
Stephen Kelly 2015-05-03 00:47:53 +02:00
parent 00bfa04748
commit 353e422b2a
2 changed files with 0 additions and 9 deletions

View File

@ -14,7 +14,6 @@
#include "cmExecutionStatus.h" #include "cmExecutionStatus.h"
#include "cmListFileCache.h" #include "cmListFileCache.h"
#include "cmPolicies.h"
#include "cmPropertyMap.h" #include "cmPropertyMap.h"
#include "cmSystemTools.h" #include "cmSystemTools.h"
#include "cmTarget.h" #include "cmTarget.h"
@ -373,11 +372,6 @@ public:
}; };
friend class PolicyPushPop; friend class PolicyPushPop;
/**
* Get the Policies Instance
*/
cmPolicies *GetPolicies() const;
mutable std::set<cmListFileContext> CMP0054ReportedIds; mutable std::set<cmListFileContext> CMP0054ReportedIds;
/** /**

View File

@ -222,9 +222,6 @@ class cmake
///! this is called by generators to update the progress ///! this is called by generators to update the progress
void UpdateProgress(const char *msg, float prog); void UpdateProgress(const char *msg, float prog);
///! get the cmake policies instance
cmPolicies *GetPolicies() {return this->Policies;}
///! Get the variable watch object ///! Get the variable watch object
cmVariableWatch* GetVariableWatch() { return this->VariableWatch; } cmVariableWatch* GetVariableWatch() { return this->VariableWatch; }