public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Make tui_win_info::make_window non-virtual
@ 2024-05-28 17:52 Tom Tromey
  0 siblings, 0 replies; only message in thread
From: Tom Tromey @ 2024-05-28 17:52 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f95ecfc6e07f619aaa183716cc3749f32b678d6e

commit f95ecfc6e07f619aaa183716cc3749f32b678d6e
Author: Tom Tromey <tom@tromey.com>
Date:   Sat Apr 27 09:30:09 2024 -0600

    Make tui_win_info::make_window non-virtual
    
    Nothing overrides tui_win_info::make_window, so remove the "virtual".
    Tested by rebuilding.

Diff:
---
 gdb/tui/tui-data.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h
index ce9c1a8a95a..3d9e934820d 100644
--- a/gdb/tui/tui-data.h
+++ b/gdb/tui/tui-data.h
@@ -50,7 +50,8 @@ struct tui_win_info
      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;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-05-28 17:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-28 17:52 [binutils-gdb] Make tui_win_info::make_window non-virtual Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).