Remove tui_out_new
authorTom Tromey <tromey@adacore.com>
Thu, 11 Aug 2022 18:29:32 +0000 (12:29 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 31 Aug 2022 17:03:40 +0000 (11:03 -0600)
tui_out_new is just a simple wrapper for 'new' and can be removed,
simplifying gdb a tiny bit.

gdb/tui/tui-io.c
gdb/tui/tui-out.c
gdb/tui/tui-out.h

index 51f08168a90ebb98d9b97df78f9cb4c22646a2b9..9f27f8bcc015c99f67f657b9870ffe7e17c83c6d 100644 (file)
@@ -907,7 +907,7 @@ tui_initialize_io (void)
   tui_stdout = new pager_file (new tui_file (stdout));
   tui_stderr = new tui_file (stderr);
   tui_stdlog = new timestamped_file (tui_stderr);
-  tui_out = tui_out_new (tui_stdout);
+  tui_out = new tui_ui_out (tui_stdout);
 
   /* Create the default UI.  */
   tui_old_uiout = new cli_ui_out (gdb_stdout);
index ae50b65a3c6557ab16259511b2b45859f6180aef..fdbd9c9fcc3f088cd20f2c9b17e8a75cf047963a 100644 (file)
@@ -109,9 +109,3 @@ tui_ui_out::tui_ui_out (ui_file *stream)
   : cli_ui_out (stream, 0)
 {
 }
-
-tui_ui_out *
-tui_out_new (struct ui_file *stream)
-{
-  return new tui_ui_out (stream);
-}
index b71d308cf1493ea9a31d9421c9d238b7d004660d..967900f0307fbc48eb4ed725fe8ecf55efdb993b 100644 (file)
@@ -61,6 +61,4 @@ private:
   int m_start_of_line = 0;
 };
 
-extern tui_ui_out *tui_out_new (struct ui_file *stream);
-
 #endif /* TUI_TUI_OUT_H */