diff options
author | Tom Tromey <tom@tromey.com> | 2019-10-01 17:14:14 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-10-09 16:50:34 -0600 |
commit | 5c45899e280be21dad7557dad641abeccd9bb37f (patch) | |
tree | b89c072266009247c16522f91898f4dd979efa41 /gdb/tui | |
parent | 6d7fd9aa4768c3fad5b5354c87eefb8026a0ba10 (diff) | |
download | gdb-5c45899e280be21dad7557dad641abeccd9bb37f.zip gdb-5c45899e280be21dad7557dad641abeccd9bb37f.tar.gz gdb-5c45899e280be21dad7557dad641abeccd9bb37f.tar.bz2 |
Remove tui_win_is_auxiliary
tui_win_is_auxiliary is not used, so remove it.
gdb/ChangeLog
2019-10-09 Tom Tromey <tom@tromey.com>
* tui/tui-data.c (tui_win_is_auxiliary): Remove.
* tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-data.c | 6 | ||||
-rw-r--r-- | gdb/tui/tui-data.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c index 748d897..f1f3947 100644 --- a/gdb/tui/tui-data.c +++ b/gdb/tui/tui-data.c @@ -34,12 +34,6 @@ static struct tui_win_info *win_with_focus = NULL; static bool win_resized = false; -int -tui_win_is_auxiliary (enum tui_win_type win_type) -{ - return (win_type > MAX_MAJOR_WINDOWS); -} - /* Answer a whether the terminal window has been resized or not. */ bool tui_win_resized () diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index 2646523..6d4fb78 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -207,8 +207,6 @@ public: bool is_highlighted = false; }; -extern int tui_win_is_auxiliary (enum tui_win_type win_type); - /* Global Data. */ extern struct tui_win_info *tui_win_list[MAX_MAJOR_WINDOWS]; |