From 027a4c30d03e3f434ddfa61e7f026e3b15f83daa Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 13 Jul 2018 11:14:57 -0600 Subject: [PATCH] Remove a warning on macOS This removes a clang warning coming from -Wmissing-braces. ChangeLog 2018-07-13 Tom Tromey * symfile.c (set_objfile_default_section_offset): Use extra braces around initializer. --- gdb/ChangeLog | 5 +++++ gdb/symfile.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7b808eb3a7..66b7c3681e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-07-13 Tom Tromey + + * symfile.c (set_objfile_default_section_offset): Use extra braces + around initializer. + 2018-07-13 Andreas Arnez * s390-tdep.c (s390_displaced_step_fixup): Adjust PC for a diff --git a/gdb/symfile.c b/gdb/symfile.c index 48eca5cc0e..62b38bd618 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -2088,7 +2088,7 @@ set_objfile_default_section_offset (struct objfile *objf, { /* Add OFFSET to all sections by default. */ std::vector offsets (objf->num_sections, - { offset }); + { { offset } }); /* Create sorted lists of all sections in ADDRS as well as all sections in OBJF. */ -- 2.34.1