summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-03-15 13:13:48 (GMT)
committerBrad King <brad.king@kitware.com>2005-03-15 13:13:48 (GMT)
commit5ddaebb522c519eec3d3af0f79a7317127a7dadb (patch)
treecd44c32949aeeaefa515c7fba58ed6e12f66e08d /Source/cmCacheManager.cxx
parent80d7413806610afa6c7eef3bba1f35247364b70d (diff)
downloadCMake-5ddaebb522c519eec3d3af0f79a7317127a7dadb.zip
CMake-5ddaebb522c519eec3d3af0f79a7317127a7dadb.tar.gz
CMake-5ddaebb522c519eec3d3af0f79a7317127a7dadb.tar.bz2
COMP: Removed warning due to unsigned enum type.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index a1692af..887b0f4 100644
--- a/Source/cmCacheManager.cxx
+++ b/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];
}