diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-06 11:32:00 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-07 21:25:35 (GMT) |
commit | 1f2c12ebd196f3d23aa40d85c965654dbc36d0ad (patch) | |
tree | cf7bc91447ecfe4dfe87f95156e86ef0cc5803f6 /Source/cmMakefile.cxx | |
parent | 97c50a8dbd9f1ca5026f60e4a224e9a087e01f0e (diff) | |
download | CMake-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.cxx | 10 |
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); |