aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli-out.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/cli-out.h')
-rw-r--r--gdb/cli-out.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/cli-out.h b/gdb/cli-out.h
index f17cb0c..c761dac 100644
--- a/gdb/cli-out.h
+++ b/gdb/cli-out.h
@@ -1,5 +1,5 @@
/* Output generating routines for GDB CLI.
- Copyright (C) 1999-2024 Free Software Foundation, Inc.
+ Copyright (C) 1999-2025 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
This file is part of GDB.
@@ -17,8 +17,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-#ifndef CLI_OUT_H
-#define CLI_OUT_H
+#ifndef GDB_CLI_OUT_H
+#define GDB_CLI_OUT_H
#include "ui-out.h"
#include <chrono>
@@ -52,7 +52,8 @@ protected:
virtual void do_begin (ui_out_type type, const char *id) override;
virtual void do_end (ui_out_type type) override;
virtual 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;
virtual void do_field_unsigned (int fldno, int width, ui_align align,
const char *fldname, ULONGEST value)
override;
@@ -112,4 +113,4 @@ private:
extern void cli_display_match_list (char **matches, int len, int max);
-#endif
+#endif /* GDB_CLI_OUT_H */