diff options
author | Tom Tromey <tom@tromey.com> | 2020-02-11 17:31:10 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-02-11 17:57:46 -0700 |
commit | 3fd6912bb1066ae047de2ade1201a823f366fc8e (patch) | |
tree | d4f47e85b244a96429ef02a08bcf146aa141daaf /gdb | |
parent | 59fdc6ef34aaff330ed068788df8155561929385 (diff) | |
download | gdb-3fd6912bb1066ae047de2ade1201a823f366fc8e.zip gdb-3fd6912bb1066ae047de2ade1201a823f366fc8e.tar.gz gdb-3fd6912bb1066ae047de2ade1201a823f366fc8e.tar.bz2 |
Don't forward-declare struct objfile in dwarf2/frame.h
dwarf2/frame.h forward-declares struct objfile, but there's no need
for this.
gdb/ChangeLog
2020-02-11 Tom Tromey <tom@tromey.com>
* dwarf2/frame.h (struct objfile): Don't forward declare.
Change-Id: I4d54d46ac9422eeb64dc5f0b934792e77a875aa5
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dwarf2/frame.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 91d7cec..72a6292 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-02-11 Tom Tromey <tom@tromey.com> + + * dwarf2/frame.h (struct objfile): Don't forward declare. + 2020-02-11 Christian Biesinger <cbiesinger@google.com> * cris-tdep.c (cris_supply_gregset): Change signature to match diff --git a/gdb/dwarf2/frame.h b/gdb/dwarf2/frame.h index a0ec361..dd7315c 100644 --- a/gdb/dwarf2/frame.h +++ b/gdb/dwarf2/frame.h @@ -23,7 +23,6 @@ #define DWARF2_FRAME_H 1 struct gdbarch; -struct objfile; struct frame_info; struct dwarf2_per_cu_data; struct agent_expr; |