aboutsummaryrefslogtreecommitdiff
path: root/gdb/ui-out.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-23 20:53:23 -0700
committerTom Tromey <tromey@redhat.com>2014-02-28 08:51:15 -0700
commit89de4da46b3b3629c51e6e1a37177a6269dc8b05 (patch)
tree50603f2b5dfbdf72136500334974d7c511b3c291 /gdb/ui-out.h
parent02fe846e43cb0190251a6fefbd322201b4bbe02d (diff)
constify ui_out_impl
This patch constifies ui_out_impl in struct ui_out, and various instances of ui_out_impl. This removes a couple of FIXME comments (near cli_ui_out_impl and mi_ui_out_impl) that did not make sense to me. Tested by rebuilding. 2014-02-28 Tom Tromey <tromey@redhat.com> * cli-out.c (cli_ui_out_impl): Now const. Remove comment. * cli-out.h (cli_ui_out_impl): Now const. * mi/mi-out.c (mi_ui_out_impl): Now const. Remove comment. * ui-out.c (struct ui_out) <impl>: Now const. (default_ui_out_impl): Now const. (ui_out_new): Make 'impl' parameter const. * ui-out.h (ui_out_new): Update.
Diffstat (limited to 'gdb/ui-out.h')
-rw-r--r--gdb/ui-out.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ui-out.h b/gdb/ui-out.h
index 27e68016c6..cbd0b9b5d1 100644
--- a/gdb/ui-out.h
+++ b/gdb/ui-out.h
@@ -234,7 +234,7 @@ extern void uo_field_string (struct ui_out *uiout, int fldno, int width,
/* Create a ui_out object */
-extern struct ui_out *ui_out_new (struct ui_out_impl *impl,
+extern struct ui_out *ui_out_new (const struct ui_out_impl *impl,
void *data,
int flags);