]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Make tui_win_info::make_window non-virtual
authorTom Tromey <tom@tromey.com>
Sat, 27 Apr 2024 15:30:09 +0000 (09:30 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 28 May 2024 17:52:19 +0000 (11:52 -0600)
Nothing overrides tui_win_info::make_window, so remove the "virtual".
Tested by rebuilding.

gdb/tui/tui-data.h

index ce9c1a8a95a325027923d06a2e00d3fd1bb00000..3d9e934820d37638088fababe39627c239e57762 100644 (file)
@@ -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;