From 4d1ae558932c17415bbe5b0dbec0a7539a19b6d5 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 30 Apr 2022 12:36:08 -0600 Subject: Constify breakpoint::print_recreate This constifies breakpoint::print_recreate. --- gdb/break-catch-load.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/break-catch-load.c') diff --git a/gdb/break-catch-load.c b/gdb/break-catch-load.c index 7f2efd5..99aa185ad 100644 --- a/gdb/break-catch-load.c +++ b/gdb/break-catch-load.c @@ -46,7 +46,7 @@ struct solib_catchpoint : public breakpoint enum print_stop_action print_it (const bpstat *bs) const override; bool print_one (bp_location **) const override; void print_mention () const override; - void print_recreate (struct ui_file *fp) override; + void print_recreate (struct ui_file *fp) const override; /* True for "catch load", false for "catch unload". */ bool is_load; @@ -196,7 +196,7 @@ solib_catchpoint::print_mention () const } void -solib_catchpoint::print_recreate (struct ui_file *fp) +solib_catchpoint::print_recreate (struct ui_file *fp) const { gdb_printf (fp, "%s %s", disposition == disp_del ? "tcatch" : "catch", -- cgit v1.1