diff options
author | Tom Tromey <tom@tromey.com> | 2022-04-30 12:36:08 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-05-06 12:03:34 -0600 |
commit | 4d1ae558932c17415bbe5b0dbec0a7539a19b6d5 (patch) | |
tree | 112b526c892a406aafa7e66592e575953a6f5336 /gdb/ada-lang.c | |
parent | b713485d666a822a9e65c0272c8d7de51baa8b5f (diff) | |
download | gdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.zip gdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.tar.gz gdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.tar.bz2 |
Constify breakpoint::print_recreate
This constifies breakpoint::print_recreate.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index c5b9d08..b11808a 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -12133,7 +12133,7 @@ struct ada_catchpoint : public base_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; /* The name of the specific exception the user specified. */ std::string excep_string; @@ -12492,7 +12492,7 @@ ada_catchpoint::print_mention () const exception catchpoint kinds. */ void -ada_catchpoint::print_recreate (struct ui_file *fp) +ada_catchpoint::print_recreate (struct ui_file *fp) const { switch (m_kind) { |