diff options
Diffstat (limited to 'gdb/ui-out.h')
-rw-r--r-- | gdb/ui-out.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ui-out.h b/gdb/ui-out.h index ef9ce4f..f9d96de 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -182,7 +182,8 @@ class ui_out void begin (ui_out_type type, const char *id); void end (ui_out_type type); - void field_signed (const char *fldname, LONGEST value); + void field_signed (const char *fldname, LONGEST value, + const ui_file_style &style = ui_file_style ()); void field_fmt_signed (int width, ui_align align, const char *fldname, LONGEST value); /* Like field_signed, but print an unsigned value. */ @@ -346,7 +347,8 @@ protected: virtual void do_begin (ui_out_type type, const char *id) = 0; virtual void do_end (ui_out_type type) = 0; virtual void do_field_signed (int fldno, int width, ui_align align, - const char *fldname, LONGEST value) = 0; + const char *fldname, LONGEST value, + const ui_file_style &style) = 0; virtual void do_field_unsigned (int fldno, int width, ui_align align, const char *fldname, ULONGEST value) = 0; virtual void do_field_skip (int fldno, int width, ui_align align, |