diff options
author | Tom Tromey <tromey@adacore.com> | 2022-08-11 12:29:32 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-08-31 11:03:40 -0600 |
commit | 4311c583a6ac84e880207bf0418872f407557e60 (patch) | |
tree | 4b8d9d8094a49cd1f7ed8a51ec897369860fc35e /gdb/tui/tui-out.c | |
parent | c3d4b6a6d9f382d7b88c2d25a1520acc1c3d51bd (diff) | |
download | gdb-4311c583a6ac84e880207bf0418872f407557e60.zip gdb-4311c583a6ac84e880207bf0418872f407557e60.tar.gz gdb-4311c583a6ac84e880207bf0418872f407557e60.tar.bz2 |
Remove tui_out_new
tui_out_new is just a simple wrapper for 'new' and can be removed,
simplifying gdb a tiny bit.
Diffstat (limited to 'gdb/tui/tui-out.c')
-rw-r--r-- | gdb/tui/tui-out.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/tui/tui-out.c b/gdb/tui/tui-out.c index ae50b65..fdbd9c9 100644 --- a/gdb/tui/tui-out.c +++ b/gdb/tui/tui-out.c @@ -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); -} |