diff options
author | Tom Tromey <tom@tromey.com> | 2019-06-21 06:12:48 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-06-25 07:48:45 -0600 |
commit | bd7db367c4bc72bef9c7848b99aaaa1431cf1672 (patch) | |
tree | 27790233093fa98a66ce50c67d5e540f58906e2a /gdb/tui/tui-data.h | |
parent | 3add462fff33beb0e6f1480d3853eb56d664b438 (diff) | |
download | gdb-bd7db367c4bc72bef9c7848b99aaaa1431cf1672.zip gdb-bd7db367c4bc72bef9c7848b99aaaa1431cf1672.tar.gz gdb-bd7db367c4bc72bef9c7848b99aaaa1431cf1672.tar.bz2 |
Remove layout_def::split
The "split" field in struct layout_def is never used, so this patch
removes it.
gdb/ChangeLog
2019-06-25 Tom Tromey <tom@tromey.com>
* tui/tui-layout.c (tui_set_layout): Update.
* tui/tui-data.h (struct tui_layout_def) <split>: Remove.
* tui/tui-data.c (layout_def): Update.
Diffstat (limited to 'gdb/tui/tui-data.h')
-rw-r--r-- | gdb/tui/tui-data.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index f29891c..0990a2d 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -176,7 +176,6 @@ struct tui_line_or_address struct tui_layout_def { enum tui_win_type display_mode; - int split; }; /* Elements in the Source/Disassembly Window. */ |