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-07 21:25:35 (GMT)
commit1f2c12ebd196f3d23aa40d85c965654dbc36d0ad (patch)
treecf7bc91447ecfe4dfe87f95156e86ef0cc5803f6 /Source/cmMakefile.cxx
parent97c50a8dbd9f1ca5026f60e4a224e9a087e01f0e (diff)
downloadCMake-1f2c12ebd196f3d23aa40d85c965654dbc36d0ad.zip
CMake-1f2c12ebd196f3d23aa40d85c965654dbc36d0ad.tar.gz
CMake-1f2c12ebd196f3d23aa40d85c965654dbc36d0ad.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);