diff options
Diffstat (limited to 'gdb/python/py-uiout.h')
-rw-r--r-- | gdb/python/py-uiout.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/python/py-uiout.h b/gdb/python/py-uiout.h index a2fc90e..f6fbd83 100644 --- a/gdb/python/py-uiout.h +++ b/gdb/python/py-uiout.h @@ -1,6 +1,6 @@ /* Python implementation of ui_out - Copyright (C) 2023-2024 Free Software Foundation, Inc. + Copyright (C) 2023-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -86,7 +86,8 @@ protected: void do_end (ui_out_type type) override; void do_field_signed (int fldno, int width, ui_align align, - const char *fldname, LONGEST value) override; + const char *fldname, LONGEST value, + const ui_file_style &style) override; void do_field_unsigned (int fldno, int width, ui_align align, const char *fldname, ULONGEST value) override; |