Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
5ddaebb5
Commit
5ddaebb5
authored
Mar 15, 2005
by
Brad King
Browse files
COMP: Removed warning due to unsigned enum type.
parent
80d74138
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmCacheManager.cxx
View file @
5ddaebb5
...
...
@@ -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
];
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment