summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-04 18:24:34 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-05 08:26:10 (GMT)
commit64556e3dfa4161b33110daba606439f2c7971b15 (patch)
tree4911adc81f9a6c4e2447335dc096205874eda940 /Source/cmCacheManager.cxx
parent23bb5d225b772f7e18dab16375c7620c99d62814 (diff)
downloadCMake-64556e3dfa4161b33110daba606439f2c7971b15.zip
CMake-64556e3dfa4161b33110daba606439f2c7971b15.tar.gz
CMake-64556e3dfa4161b33110daba606439f2c7971b15.tar.bz2
cmCacheManager: Remove unused overloads.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index 30791ff..002ccd1 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -76,25 +76,12 @@ bool cmCacheManager::IsType(const char* s)
return false;
}
-bool cmCacheManager::LoadCache(cmMakefile* mf)
-{
- return this->LoadCache(mf->GetHomeOutputDirectory());
-}
-
-
bool cmCacheManager::LoadCache(const std::string& path)
{
std::set<std::string> emptySet;
return this->LoadCache(path, true, emptySet, emptySet);
}
-bool cmCacheManager::LoadCache(const std::string& path,
- bool internal)
-{
- std::set<std::string> emptySet;
- return this->LoadCache(path, internal, emptySet, emptySet);
-}
-
static bool ParseEntryWithoutType(const std::string& entry,
std::string& var,
std::string& value)
@@ -419,12 +406,6 @@ void cmCacheManager::WritePropertyEntries(std::ostream& os,
}
}
-bool cmCacheManager::SaveCache(cmMakefile* mf)
-{
- return this->SaveCache(mf->GetHomeOutputDirectory());
-}
-
-
bool cmCacheManager::SaveCache(const std::string& path)
{
std::string cacheFile = path;