1
0
Эх сурвалжийг харах

COMP: Removed warning due to unsigned enum type.

Brad King 20 жил өмнө
parent
commit
5ddaebb522

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