From 68c14faadaf5bfd9816ac913dc8858116aa15a84 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Wed, 22 Oct 2014 04:35:38 +0100 Subject: [PATCH] target.h: Include infrun.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: src/gdb/target.h:753:10: error: use of enum ‘exec_direction_kind’ without previous declaration in C++ mode. We can't forward declare enums. gdb/ChangeLog: 2015-02-27 Pedro Alves * target.h: Include "infrun.h". --- gdb/ChangeLog | 4 ++++ gdb/target.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 06df138..7f3043f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2015-02-27 Pedro Alves + * target.h: Include "infrun.h". + +2015-02-27 Pedro Alves + * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP. 2015-02-27 Pedro Alves diff --git a/gdb/target.h b/gdb/target.h index 2811c47..a2d64bf 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -39,6 +39,8 @@ struct traceframe_info; struct expression; struct dcache_struct; +#include "infrun.h" /* For enum exec_direction_kind. */ + /* This include file defines the interface between the main part of the debugger, and the part which is target-specific, or specific to the communications interface between us and the -- 2.7.4