diff options
Diffstat (limited to 'gdb/expression.h')
-rw-r--r-- | gdb/expression.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/expression.h b/gdb/expression.h index 6bd3fc0..fd483e5 100644 --- a/gdb/expression.h +++ b/gdb/expression.h @@ -185,7 +185,7 @@ extern void dump_prefix_expression (struct expression *, struct ui_file *); or inclusive. So we have six sorts of subrange. This enumeration type is to identify this. */ -enum range_type : unsigned +enum range_flag : unsigned { /* This is a standard range. Both the lower and upper bounds are defined, and the bounds are inclusive. */ @@ -201,6 +201,6 @@ enum range_type : unsigned RANGE_HIGH_BOUND_EXCLUSIVE = 1 << 2, }; -DEF_ENUM_FLAGS_TYPE (enum range_type, range_types); +DEF_ENUM_FLAGS_TYPE (enum range_flag, range_flags); #endif /* !defined (EXPRESSION_H) */ |