forked from OSchip/llvm-project
Use an underlying enum type of unsigned to silence a -Wmicrosoft warning about being unable to put (unsigned)-1 into the default underyling type of int
llvm-svn: 232498
This commit is contained in:
parent
f06086a912
commit
0b16859805
|
@ -104,7 +104,7 @@ namespace {
|
|||
///
|
||||
class InductiveRangeCheck {
|
||||
// Classifies a range check
|
||||
enum RangeCheckKind {
|
||||
enum RangeCheckKind : unsigned {
|
||||
// Range check of the form "0 <= I".
|
||||
RANGE_CHECK_LOWER = 1,
|
||||
|
||||
|
|
Loading…
Reference in New Issue