diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-31 15:04:58 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-26 15:19:13 -0700 |
commit | 27d326da434d60056eae0d14c1f0175d0e121c2a (patch) | |
tree | f03d0251eee87288cc2b0a06a761af0bcd0d3d70 /gdb/ui-file.c | |
parent | 1285ce8629b37f800bf21731ee7c7a8b1b8d0233 (diff) | |
download | gdb-27d326da434d60056eae0d14c1f0175d0e121c2a.zip gdb-27d326da434d60056eae0d14c1f0175d0e121c2a.tar.gz gdb-27d326da434d60056eae0d14c1f0175d0e121c2a.tar.bz2 |
Remove global wrap_here function
This removes the global wrap_here function, so that future calls
cannot be introduced. Instead, all callers must use the method on the
appropriate ui_file.
This temporarily moves the implementation of this method to utils.c.
This will change once the remaining patches to untangle the pager have
been written.
Diffstat (limited to 'gdb/ui-file.c')
-rw-r--r-- | gdb/ui-file.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/ui-file.c b/gdb/ui-file.c index 57fc05a..d30ec04 100644 --- a/gdb/ui-file.c +++ b/gdb/ui-file.c @@ -131,12 +131,6 @@ ui_file::printchar (int c, int quoter, bool async_safe) this->write (buf, out); } -void -ui_file::wrap_here (int indent) -{ - ::wrap_here (indent); -} - void |