Browse Source

COMP: Removed warning due to unsigned enum type.

Brad King 20 years ago
parent
commit
5ddaebb522
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmCacheManager.cxx

+ 1 - 1
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];
     }