From 62d654abaefae34ad5761c7036a057a2d65e5891 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Wed, 11 Sep 2002 14:38:29 -0400 Subject: Fix find and remove check for uninitialized entries --- Source/cmCacheManager.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 2b62fe2..4c31a52 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -318,8 +318,11 @@ bool cmCacheManager::SaveCache(const char* path) CacheEntryType t = ce.m_Type; if(t == cmCacheManager::UNINITIALIZED) { + /* + // This should be added in, but is not for now. cmSystemTools::Error("Cache entry \"", (*i).first.c_str(), "\" is uninitialized"); + */ } else if(t != INTERNAL) { @@ -595,7 +598,7 @@ void cmCacheManager::CacheIterator::Begin() bool cmCacheManager::CacheIterator::Find(const char* key) { m_Position = m_Container.m_Cache.find(key); - return this->IsAtEnd(); + return !this->IsAtEnd(); } void cmCacheManager::CacheIterator::Next() -- cgit v0.12