COMP: Removed warning due to unsigned enum type.

This commit is contained in:
Brad King 2005-03-15 08:13:48 -05:00
parent 80d7413806
commit 5ddaebb522
1 changed files with 1 additions and 1 deletions

View File

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