diff options
author | Tom Tromey <tom@tromey.com> | 2019-06-19 22:24:30 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-06-19 22:24:30 -0600 |
commit | e6a1c5cbcb9cee5a08d814669419936ee151b19d (patch) | |
tree | 995aef670f002b74049a3ef6e57949d1f2247878 /gdb | |
parent | 6f6ffbeb5a6bce5a1274478256937867f337a037 (diff) | |
download | binutils-e6a1c5cbcb9cee5a08d814669419936ee151b19d.zip binutils-e6a1c5cbcb9cee5a08d814669419936ee151b19d.tar.gz binutils-e6a1c5cbcb9cee5a08d814669419936ee151b19d.tar.bz2 |
Don't declare tui_init_content_element
I noticed that tui_init_content_element is declared but never defined.
This removes the declaration. Tested by rebuilding. (I should have
merged this with the previous patch but I had forgotten that I found
two of these.)
gdb/ChangeLog
2019-06-19 Tom Tromey <tom@tromey.com>
* tui/tui-data.h (tui_init_content_element): Don't declare.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/tui/tui-data.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1e30d76..18197b1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2019-06-19 Tom Tromey <tom@tromey.com> + * tui/tui-data.h (tui_init_content_element): Don't declare. + +2019-06-19 Tom Tromey <tom@tromey.com> + * tui/tui-data.h (tui_init_win_info): Don't declare. 2019-06-19 Tom de Vries <tdevries@suse.de> diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index 5673d46..c42647b 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -306,8 +306,6 @@ extern void tui_init_generic_part (struct tui_gen_win_info *); extern tui_win_content tui_alloc_content (int, enum tui_win_type); extern int tui_add_content_elements (struct tui_gen_win_info *, int); -extern void tui_init_content_element (struct tui_win_element *, - enum tui_win_type); extern void tui_free_window (struct tui_win_info *); extern void tui_free_win_content (struct tui_gen_win_info *); extern void tui_free_data_content (tui_win_content, int); |