diff options
author | Tom Tromey <tom@tromey.com> | 2019-06-26 16:03:12 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-07-17 12:18:58 -0600 |
commit | c223a7299e2bdb604d7006842eda7165bcbf2c15 (patch) | |
tree | 3c194cf08a1395b6cdba0c96d8c76a201942d884 | |
parent | 50daf2683bad925470f6f1bd08aef928c2f4d6fe (diff) | |
download | gdb-c223a7299e2bdb604d7006842eda7165bcbf2c15.zip gdb-c223a7299e2bdb604d7006842eda7165bcbf2c15.tar.gz gdb-c223a7299e2bdb604d7006842eda7165bcbf2c15.tar.bz2 |
Don't declare unimplemented functions
A couple of functions were declared but never defined. This removes
the declarations.
gdb/ChangeLog
2019-07-17 Tom Tromey <tom@tromey.com>
* tui/tui-windata.h (tui_refresh_data_win): Don't declare.
* tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-regs.h | 1 | ||||
-rw-r--r-- | gdb/tui/tui-windata.h | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7c1ff32..b12813c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-07-17 Tom Tromey <tom@tromey.com> + * tui/tui-windata.h (tui_refresh_data_win): Don't declare. + * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare. + +2019-07-17 Tom Tromey <tom@tromey.com> + * tui/tui-windata.h (tui_display_all_data): Don't declare. * tui/tui-windata.c (tui_data_window::display_all_data): Rename from tui_display_all_data. diff --git a/gdb/tui/tui-regs.h b/gdb/tui/tui-regs.h index c105469..c99910b 100644 --- a/gdb/tui/tui-regs.h +++ b/gdb/tui/tui-regs.h @@ -28,6 +28,5 @@ extern void tui_check_register_values (struct frame_info *); extern void tui_show_registers (struct reggroup *group); extern void tui_display_registers_from (int); extern int tui_display_registers_from_line (int); -extern int tui_first_reg_element_inline (int); #endif /* TUI_TUI_REGS_H */ diff --git a/gdb/tui/tui-windata.h b/gdb/tui/tui-windata.h index adffcaf..fce4e6d 100644 --- a/gdb/tui/tui-windata.h +++ b/gdb/tui/tui-windata.h @@ -26,6 +26,5 @@ extern void tui_erase_data_content (const char *); extern void tui_delete_data_content_windows (void); -extern void tui_refresh_data_win (void); #endif /* TUI_TUI_WINDATA_H */ |