diff options
Diffstat (limited to 'gdb/cp-valprint.c')
-rw-r--r-- | gdb/cp-valprint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c index fac558d..1c8c499 100644 --- a/gdb/cp-valprint.c +++ b/gdb/cp-valprint.c @@ -279,7 +279,7 @@ cp_print_value_fields (struct value *val, struct ui_file *stream, } else { - opts->deref_ref = 0; + opts->deref_ref = false; v = value_field_bitfield (type, i, valaddr, value_embedded_offset (val), val); @@ -331,7 +331,7 @@ cp_print_value_fields (struct value *val, struct ui_file *stream, else { struct value *v = value_primitive_field (val, 0, i, type); - opts->deref_ref = 0; + opts->deref_ref = false; common_val_print (v, stream, recurse + 1, opts, current_language); } @@ -613,7 +613,7 @@ cp_print_static_field (struct type *type, } opts = *options; - opts.deref_ref = 0; + opts.deref_ref = false; common_val_print (val, stream, recurse, &opts, current_language); } |