COMP: Removed warning due to unsigned enum type.

This commit is contained in:
Brad King 2005-03-15 08:13:48 -05:00
父節點 80d7413806
當前提交 5ddaebb522

查看文件

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