mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
COMP: Removed warning due to unsigned enum type.
This commit is contained in:
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user