diff options
author | Tom Tromey <tom@tromey.com> | 2024-04-27 09:30:09 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-05-28 11:52:19 -0600 |
commit | f95ecfc6e07f619aaa183716cc3749f32b678d6e (patch) | |
tree | 0e51819adea05a571993dd8992224583053bc70e /gdb/tui | |
parent | 444c60fe33717b6aa5c1f257babfca4c789d07ac (diff) | |
download | gdb-f95ecfc6e07f619aaa183716cc3749f32b678d6e.zip gdb-f95ecfc6e07f619aaa183716cc3749f32b678d6e.tar.gz gdb-f95ecfc6e07f619aaa183716cc3749f32b678d6e.tar.bz2 |
Make tui_win_info::make_window non-virtual
Nothing overrides tui_win_info::make_window, so remove the "virtual".
Tested by rebuilding.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index ce9c1a8..3d9e934 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -50,7 +50,8 @@ protected: window's contents. */ virtual void rerender (); - virtual void make_window (); + /* Create the curses window. */ + void make_window (); public: tui_win_info (tui_win_info &&) = default; |