diff options
author | Tom Tromey <tom@tromey.com> | 2018-04-23 20:52:36 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-04-30 12:59:03 -0600 |
commit | 4904c3c6b69d5c7b5e4682220c1d9503e00a457e (patch) | |
tree | 0227e85efdee038aa6d1ec9f4236e1e01fbbd2dd /gdb/mi | |
parent | 7c66fffc1f3dae0b921ae3cf8139824804cf0705 (diff) | |
download | gdb-4904c3c6b69d5c7b5e4682220c1d9503e00a457e.zip gdb-4904c3c6b69d5c7b5e4682220c1d9503e00a457e.tar.gz gdb-4904c3c6b69d5c7b5e4682220c1d9503e00a457e.tar.bz2 |
Make do_is_mi_like_p const.
This changes ui_out to make is_mi_like_p and do_is_mi_like_p "const".
ChangeLog
2018-04-30 Tom Tromey <tom@tromey.com>
* ui-out.c: Update.
* cli-out.h (cli_ui_out::do_is_mi_like_p): Update.
* ui-out.h (ui_out::is_mi_like_p): Now const.
(ui_out::do_is_mi_like_p): Now const.
* mi/mi-out.h (mi_ui_out::do_is_mi_like_p): Update.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-out.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-out.h b/gdb/mi/mi-out.h index 7389071..89ff88c 100644 --- a/gdb/mi/mi-out.h +++ b/gdb/mi/mi-out.h @@ -69,7 +69,7 @@ protected: virtual void do_flush () override; virtual void do_redirect (struct ui_file *outstream) override; - virtual bool do_is_mi_like_p () override + virtual bool do_is_mi_like_p () const override { return true; } private: |