aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2018-10-03 14:34:18 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2018-10-03 17:51:35 -0400
commit8634679f82df75cf482b0c0814c2b3865da91d22 (patch)
treead1a5d08b6d0ef8b6d5e0551cc8b01dfd69447b8 /gdb
parentf35d5adea1cee8ce9141ad85a7e59d008c2e4d42 (diff)
downloadbinutils-8634679f82df75cf482b0c0814c2b3865da91d22.zip
binutils-8634679f82df75cf482b0c0814c2b3865da91d22.tar.gz
binutils-8634679f82df75cf482b0c0814c2b3865da91d22.tar.bz2
Remove struct keyword in range-based for
I get the following error with gcc 6.3.0: /home/simark/src/binutils-gdb/gdb/dwarf2read.c: In function 'void read_func_scope(die_info*, dwarf2_cu*)': /home/simark/src/binutils-gdb/gdb/dwarf2read.c:13838:12: error: types may not be defined in a for-range-declaration [-Werror] for (struct symbol *sym : template_args) ^~~~~~ Removing the struct keyword fixes it. gdb/ChangeLog: * dwarf2read.c (read_func_scope): Remove struct keyword in range-based for.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/dwarf2read.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 57b85dc..7753110 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2018-10-03 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * dwarf2read.c (read_func_scope): Remove struct keyword in
+ range-based for.
+
2018-10-03 Tom Tromey <tom@tromey.com>
* README: Mention --enable-ubsan.
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 7004299..929a8be 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -13835,7 +13835,7 @@ read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
though they don't appear in this symtab directly, other parts
of gdb assume that symbols do, and this is reasonably
true. */
- for (struct symbol *sym : template_args)
+ for (symbol *sym : template_args)
symbol_set_symtab (sym, symbol_symtab (templ_func));
}