From 89de4da46b3b3629c51e6e1a37177a6269dc8b05 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 23 Dec 2013 20:53:23 -0700 Subject: 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 * 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) : Now const. (default_ui_out_impl): Now const. (ui_out_new): Make 'impl' parameter const. * ui-out.h (ui_out_new): Update. --- gdb/ui-out.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/ui-out.c') diff --git a/gdb/ui-out.c b/gdb/ui-out.c index a591352..2edb140 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -102,7 +102,7 @@ struct ui_out { int flags; /* Specific implementation of ui-out. */ - struct ui_out_impl *impl; + const struct ui_out_impl *impl; void *data; /* Current level. */ @@ -198,7 +198,7 @@ static void default_data_destroy (struct ui_out *uiout); /* This is the default ui-out implementation functions vector. */ -struct ui_out_impl default_ui_out_impl = +const struct ui_out_impl default_ui_out_impl = { default_table_begin, default_table_body, @@ -1095,7 +1095,7 @@ ui_out_query_field (struct ui_out *uiout, int colno, /* Initalize private members at startup. */ struct ui_out * -ui_out_new (struct ui_out_impl *impl, void *data, +ui_out_new (const struct ui_out_impl *impl, void *data, int flags) { struct ui_out *uiout = XNEW (struct ui_out); -- cgit v1.1