diff options
author | 2019-01-21 13:43:16 -0700 | |
---|---|---|
committer | 2019-01-22 20:35:20 -0700 | |
commit | 7af7e9b5d8f9dd8f994d59923158d24d77a54bbe (patch) | |
tree | 06020265a2c8a599250df96baedf9e28458c4136 /gdb/compile | |
parent | Include compile-internal.h in gcc-c-plugin.h (diff) | |
download | binutils-gdb-7af7e9b5d8f9dd8f994d59923158d24d77a54bbe.tar.gz binutils-gdb-7af7e9b5d8f9dd8f994d59923158d24d77a54bbe.tar.bz2 binutils-gdb-7af7e9b5d8f9dd8f994d59923158d24d77a54bbe.zip |
Remove a comment in compile/compile-cplus-types.c
The include sorter can't handle multi-line comments on the same line
as a #include. This patch removes the only such comment.
In general I think these sorts of comments do not provide much value:
more often than not, I find that the comment is obsolete in one way or
another, and so the include sorter removes them in most cases.
gdb/ChangeLog
2019-01-22 Tom Tromey <tom@tromey.com>
* compile/compile-cplus-types.c: Remove a comment by #include.
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-cplus-types.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/compile/compile-cplus-types.c b/gdb/compile/compile-cplus-types.c index 97c4d3c707d..330589c796f 100644 --- a/gdb/compile/compile-cplus-types.c +++ b/gdb/compile/compile-cplus-types.c @@ -32,8 +32,7 @@ #include "block.h" #include "gdbcmd.h" #include "c-lang.h" -#include "compile-c.h" /* Included for c_get_range_decl_name - et al. */ +#include "compile-c.h" #include <algorithm> /* Default compile flags for C++. */ |