diff options
author | Tom Tromey <tromey@redhat.com> | 2012-03-01 18:26:13 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-03-01 18:26:13 +0000 |
commit | b0db66a7b319cbf68c9989bbe4a65841defffef9 (patch) | |
tree | d42926ffdca646eb8f9156763831f4b6be3a9835 /gdb | |
parent | 132c57b47776e318422661c6f9196dc92d96335a (diff) | |
download | gdb-b0db66a7b319cbf68c9989bbe4a65841defffef9.zip gdb-b0db66a7b319cbf68c9989bbe4a65841defffef9.tar.gz gdb-b0db66a7b319cbf68c9989bbe4a65841defffef9.tar.bz2 |
* gdbtypes.h (struct vbase): Remove.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbtypes.h | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1bc8dd7..1d5912f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2012-03-01 Tom Tromey <tromey@redhat.com> + * gdbtypes.h (struct vbase): Remove. + +2012-03-01 Tom Tromey <tromey@redhat.com> + * c-valprint.c (print_function_pointer_address): Move... * valprint.c: ... here. Make non-static. * m2-valprint.c (print_function_pointer_address): Remove. diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index cddd2d0..07c3a86 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -866,13 +866,6 @@ struct cplus_struct_type struct symbol **template_arguments; }; -/* Struct used in computing virtual base list. */ -struct vbase - { - struct type *vbasetype; /* pointer to virtual base */ - struct vbase *next; /* next in chain */ - }; - /* Struct used to store conversion rankings. */ struct rank { |