diff options
author | Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com> | 2017-10-11 11:00:48 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2017-10-11 11:00:48 +0100 |
commit | 7fa29be949a96f68ee65dcdb4f56f132609170db (patch) | |
tree | 70e4e6f44212b2d460dd18a1cb29b97e81daee94 /gdb/p-lang.h | |
parent | d9b477e3b7388732ed5293d929ceb5fc609916fe (diff) | |
download | gdb-7fa29be949a96f68ee65dcdb4f56f132609170db.zip gdb-7fa29be949a96f68ee65dcdb4f56f132609170db.tar.gz gdb-7fa29be949a96f68ee65dcdb4f56f132609170db.tar.bz2 |
Remove unnecessary parentheses in declarations
GCC commit a94975e57 ("C++ warning on vexing parse") introduces new
warnings "unnecessary parentheses in the declaration of ...". These
cause the build of binutils and gdb to fail. This patch removes those
parentheses for a successful build.
gdb/ChangeLog:
2017-10-11 Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
* macrotab.h (macro_lookup_inclusion): Remove unnecessary
parentheses in the declaration.
(macro_lookup_inclusion): Likewise.
(macro_lookup_definition): Likewise.
* p-lang.h (pascal_builtin_types): Likewise.
* tui/tui-data.c (tui_win_list): Likewise.
* tui/tui-data.h (tui_win_list): Likewise.
* utils.h (make_cleanup_free_section_addr_info): Likewise.
Diffstat (limited to 'gdb/p-lang.h')
-rw-r--r-- | gdb/p-lang.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/p-lang.h b/gdb/p-lang.h index 96a290b..1f82c1a 100644 --- a/gdb/p-lang.h +++ b/gdb/p-lang.h @@ -59,7 +59,7 @@ extern void pascal_printstr (struct ui_file *, struct type *, const gdb_byte *, unsigned int, const char *, int, const struct value_print_options *); -extern struct type **const (pascal_builtin_types[]); +extern struct type **const pascal_builtin_types[]; /* These are in p-typeprint.c: */ |