diff options
author | Tom Tromey <tom@tromey.com> | 2020-02-08 13:40:54 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-02-08 13:40:58 -0700 |
commit | 1eba2311e1a31072538aaa7937dd4cb893aea634 (patch) | |
tree | 49046c87a19f231e3cf0a33e3ce8b8b25da186f3 /gdb | |
parent | e41c2da2dd4d2d8868ae30cad94345fbd6f7ace6 (diff) | |
download | gdb-1eba2311e1a31072538aaa7937dd4cb893aea634.zip gdb-1eba2311e1a31072538aaa7937dd4cb893aea634.tar.gz gdb-1eba2311e1a31072538aaa7937dd4cb893aea634.tar.bz2 |
Don't declare die_info in dwarf2read.h
There's no need to forward-declare struct die_info in dwarf2read.h.
gdb/ChangeLog
2020-02-08 Tom Tromey <tom@tromey.com>
* dwarf2read.h (struct die_info): Don't declare.
Change-Id: I0b8dbf99558b9547d418cfd8ef387a21f7dfa660
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dwarf2read.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 509e215..c3e86da 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2020-02-08 Tom Tromey <tom@tromey.com> + * dwarf2read.h (struct die_info): Don't declare. + +2020-02-08 Tom Tromey <tom@tromey.com> + * dwarf2read.h (die_info_ptr): Remove typedef. 2020-02-08 Tom Tromey <tom@tromey.com> diff --git a/gdb/dwarf2read.h b/gdb/dwarf2read.h index 0eb2831..83da39f 100644 --- a/gdb/dwarf2read.h +++ b/gdb/dwarf2read.h @@ -47,7 +47,6 @@ struct dwarf2_debug_sections; struct mapped_index; struct mapped_debug_names; struct signatured_type; -struct die_info; /* Collection of data recorded per objfile. This hangs off of dwarf2_objfile_data_key. */ |