From 5ddaebb522c519eec3d3af0f79a7317127a7dadb Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 15 Mar 2005 08:13:48 -0500 Subject: COMP: Removed warning due to unsigned enum type. --- Source/cmCacheManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index a1692af..887b0f4 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -39,7 +39,7 @@ const char* cmCacheManagerTypes[] = const char* cmCacheManager::TypeToString(cmCacheManager::CacheEntryType type) { - if ( type > 6 || type < 0 ) + if ( type > 6 ) { return cmCacheManagerTypes[6]; } -- cgit v0.12