summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-01-21 14:23:27 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-01-22 14:16:40 (GMT)
commit2a6e56e078666a48d3e34b36c1500d44c429ecf0 (patch)
tree33ee7ee1fc0d88380b0fac42b444afeea6198a9e /Source/cmMakefile.cxx
parent5cc9fb02349e4b7e63f3cb087dc37b3c9b096e1d (diff)
downloadCMake-2a6e56e078666a48d3e34b36c1500d44c429ecf0.zip
CMake-2a6e56e078666a48d3e34b36c1500d44c429ecf0.tar.gz
CMake-2a6e56e078666a48d3e34b36c1500d44c429ecf0.tar.bz2
cmCacheManager: Consify version accessors.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 6dc6a46..6266f82 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -169,12 +169,12 @@ void cmMakefile::Initialize()
this->CheckCMP0000 = false;
}
-unsigned int cmMakefile::GetCacheMajorVersion()
+unsigned int cmMakefile::GetCacheMajorVersion() const
{
return this->GetCacheManager()->GetCacheMajorVersion();
}
-unsigned int cmMakefile::GetCacheMinorVersion()
+unsigned int cmMakefile::GetCacheMinorVersion() const
{
return this->GetCacheManager()->GetCacheMinorVersion();
}