aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2016-11-24 10:23:07 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2016-11-26 10:23:36 -0500
commit59b21252a88aa6ba488cfb19686d9cbad2577e76 (patch)
tree0a864aca728d0c4942fcaf78f760456e51f05f70 /gdb
parentcf6451802f5d3f161d992ea39fac139273926773 (diff)
downloadbinutils-59b21252a88aa6ba488cfb19686d9cbad2577e76.zip
binutils-59b21252a88aa6ba488cfb19686d9cbad2577e76.tar.gz
binutils-59b21252a88aa6ba488cfb19686d9cbad2577e76.tar.bz2
Remove stale comments
The default ui_out is gone since commit 23ff98d2fed4a1eaeb815e18cd4169e5aa7aaa60. gdb/ChangeLog: * ui-out.h (struct ui_out_impl): Remove comment. * ui-out.c (struct ui_out): Remove comment.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/ui-out.c2
-rw-r--r--gdb/ui-out.h3
3 files changed, 5 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1744139..745ab7b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * ui-out.h (struct ui_out_impl): Remove comment.
+ * ui-out.c (struct ui_out): Remove comment.
+
2016-11-25 John Baldwin <jhb@FreeBSD.org>
* contrib/ari/gdb_ari.sh (no parameter function): Remove check.
diff --git a/gdb/ui-out.c b/gdb/ui-out.c
index 60d18ee..10f7335 100644
--- a/gdb/ui-out.c
+++ b/gdb/ui-out.c
@@ -87,8 +87,6 @@ struct ui_out_table
/* The ui_out structure */
-/* Any change here requires a corresponding one in the initialization
- of the default uiout, which is statically initialized. */
struct ui_out
{
diff --git a/gdb/ui-out.h b/gdb/ui-out.h
index 9e1e74d..a641601 100644
--- a/gdb/ui-out.h
+++ b/gdb/ui-out.h
@@ -202,9 +202,6 @@ typedef void (data_destroy_ftype) (struct ui_out *uiout);
/* ui-out-impl */
-/* IMPORTANT: If you change this structure, make sure to change the default
- initialization in ui-out.c. */
-
struct ui_out_impl
{
table_begin_ftype *table_begin;