From d73f9c4bab1a0ec82007f9d36b8a7bf5d34f7bf6 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Thu, 6 Oct 2016 13:01:37 -0400 Subject: [PATCH] frame.h: Forward-declare struct ui_out MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes this failure when building in C mode. I think it's relevant for master as well, since it's a good practice to include (or forward-declare) what you use. In file included from ../../binutils-gdb/gdb/gdbarch.h:38:0, from ../../binutils-gdb/gdb/defs.h:653, from ../../binutils-gdb/gdb/dictionary.c:23: ../../binutils-gdb/gdb/frame.h:710:48: warning: ‘struct ui_out’ declared inside parameter list will not be visible outside of this definition or declaration extern void print_stack_frame_to_uiout (struct ui_out *uiout, gdb/ChangeLog: * frame.h: Forward-declare struct ui_out. --- gdb/ChangeLog | 4 ++++ gdb/frame.h | 1 + 2 files changed, 5 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 981ccf4..b60b3e6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-10-06 Simon Marchi + + * frame.h: Forward-declare struct ui_out. + 2016-10-06 Tom Tromey * MAINTAINERS: Remove Java test maintainer. diff --git a/gdb/frame.h b/gdb/frame.h index de13e7d..a05ac82 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -77,6 +77,7 @@ struct frame_base; struct block; struct gdbarch; struct ui_file; +struct ui_out; /* Status of a given frame's stack. */ -- 2.7.4