From 18cc1228bb576b16f6a13d7ea4d72d9d90821f9b Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Thu, 7 Jun 2007 10:41:52 -0400 Subject: [PATCH] ENH: also remove uninitialized from the cache Alex --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 491a2987b..d6d56d0d6 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -335,7 +335,7 @@ bool cmake::SetCacheArgs(const std::vector& args) for ( it.Begin(); !it.IsAtEnd(); it.Next() ) { cmCacheManager::CacheEntryType t = it.GetType(); - if(t != cmCacheManager::STATIC && t != cmCacheManager::UNINITIALIZED) + if(t != cmCacheManager::STATIC) { std::string entryName = it.GetName(); if (regex.find(entryName.c_str()))