Use "false" in compile_cplus_convert_enum
This changes compile_cplus_convert_enum to use "false". Note that this variable is never modified, which seems like an error. I filed PR compile/24473 for this. gdb/ChangeLog 2019-05-04 Tom Tromey <tom@tromey.com> * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use "false".
This commit is contained in:
parent
fa9c2a59e3
commit
9c05602219
2 changed files with 6 additions and 1 deletions
|
@ -910,7 +910,7 @@ static gcc_type
|
|||
compile_cplus_convert_enum (compile_cplus_instance *instance, struct type *type,
|
||||
enum gcc_cp_symbol_kind nested_access)
|
||||
{
|
||||
int scoped_enum_p = FALSE;
|
||||
bool scoped_enum_p = false;
|
||||
|
||||
/* Create a new scope for this type. */
|
||||
compile_scope scope = instance->new_scope (TYPE_NAME (type), type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue