summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index 4c57c5f..6af748f 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -766,19 +766,6 @@ void cmCacheManager::AddCacheEntry(const char* key,
this->Cache[key] = e;
}
-void cmCacheManager::AddCacheEntry(const char* key, bool v,
- const char* helpString)
-{
- if(v)
- {
- this->AddCacheEntry(key, "ON", helpString, cmCacheManager::BOOL);
- }
- else
- {
- this->AddCacheEntry(key, "OFF", helpString, cmCacheManager::BOOL);
- }
-}
-
bool cmCacheManager::CacheIterator::IsAtEnd() const
{
return this->Position == this->Container.Cache.end();