summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-06 11:32:00 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-06 15:58:54 (GMT)
commit08c642c6ae47fd075fe1060fc0e28d8a24cc3c00 (patch)
treec4887cdd0e1991d8833923ddfdad7dd7986dbfd8 /Source/cmMakefile.cxx
parentcec8f97e5717fac279d310f3f0b9e849a0e59706 (diff)
downloadCMake-08c642c6ae47fd075fe1060fc0e28d8a24cc3c00.zip
CMake-08c642c6ae47fd075fe1060fc0e28d8a24cc3c00.tar.gz
CMake-08c642c6ae47fd075fe1060fc0e28d8a24cc3c00.tar.bz2
cmMakefile: Remove cache version accessors.
They are only used by legacy code. Inline them there to simplify cmMakefile.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 7f44da2..ad4ad7c 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -174,16 +174,6 @@ void cmMakefile::Initialize()
this->CheckCMP0000 = false;
}
-unsigned int cmMakefile::GetCacheMajorVersion() const
-{
- return this->GetCacheManager()->GetCacheMajorVersion();
-}
-
-unsigned int cmMakefile::GetCacheMinorVersion() const
-{
- return this->GetCacheManager()->GetCacheMinorVersion();
-}
-
cmMakefile::~cmMakefile()
{
cmDeleteAll(this->InstallGenerators);