[cmake-commits] alex committed cmake.cxx 1.294 1.295

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Jun 7 10:41:54 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv31030

Modified Files:
	cmake.cxx 
Log Message:

ENH: also remove uninitialized from the cache

Alex


Index: cmake.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmake.cxx,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -d -r1.294 -r1.295
--- cmake.cxx	4 Jun 2007 17:50:34 -0000	1.294
+++ cmake.cxx	7 Jun 2007 14:41:52 -0000	1.295
@@ -335,7 +335,7 @@
       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()))



More information about the Cmake-commits mailing list