summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-02 22:47:53 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-06 07:35:55 (GMT)
commit353e422b2ad3d51dfc6c6db968ebcece10cbcc8d (patch)
treea3d1b60c786df1956f57726d16d58e73ab0452bd /Source
parent00bfa047481ed9f75444cb4954d7d72f616aef0f (diff)
downloadCMake-353e422b2ad3d51dfc6c6db968ebcece10cbcc8d.zip
CMake-353e422b2ad3d51dfc6c6db968ebcece10cbcc8d.tar.gz
CMake-353e422b2ad3d51dfc6c6db968ebcece10cbcc8d.tar.bz2
cmMakefile: Remove unused GetPolicies method.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.h6
-rw-r--r--Source/cmake.h3
2 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 0b328e9..85451ad 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -14,7 +14,6 @@
#include "cmExecutionStatus.h"
#include "cmListFileCache.h"
-#include "cmPolicies.h"
#include "cmPropertyMap.h"
#include "cmSystemTools.h"
#include "cmTarget.h"
@@ -373,11 +372,6 @@ public:
};
friend class PolicyPushPop;
- /**
- * Get the Policies Instance
- */
- cmPolicies *GetPolicies() const;
-
mutable std::set<cmListFileContext> CMP0054ReportedIds;
/**
diff --git a/Source/cmake.h b/Source/cmake.h
index 0fe7bfc..f0f9411 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -222,9 +222,6 @@ class cmake
///! this is called by generators to update the progress
void UpdateProgress(const char *msg, float prog);
- ///! get the cmake policies instance
- cmPolicies *GetPolicies() {return this->Policies;}
-
///! Get the variable watch object
cmVariableWatch* GetVariableWatch() { return this->VariableWatch; }