diff options
author | Tom Tromey <tom@tromey.com> | 2016-10-11 20:02:23 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2016-10-21 14:17:39 -0600 |
commit | f60ee22ea1d62f7004511ec65a3ad76890032d88 (patch) | |
tree | 87b16bda9842bcb83666c81b97280c12cf23c2ef /gdb/ChangeLog | |
parent | 192ca6d8eac4a5538036ef200b95d6ef3dbe9511 (diff) | |
download | gdb-f60ee22ea1d62f7004511ec65a3ad76890032d88.zip gdb-f60ee22ea1d62f7004511ec65a3ad76890032d88.tar.gz gdb-f60ee22ea1d62f7004511ec65a3ad76890032d88.tar.bz2 |
Remove last cleanup from captured_main_1
An earlier patch split captured_main into two parts. This patch
removes the last remaining cleanup from captured_main_1, and also
replaces a second hand-rolled VEC-like array with a std::vector.
2016-10-21 Tom Tromey <tom@tromey.com>
* main.c: Include <vector>.
(cmdarg_s): Remove typedef. Don't define VEC.
(captured_main_1): Use vector, not VEC. Remove cleanups.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f10034b..857d2a4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2016-10-21 Tom Tromey <tom@tromey.com> + * main.c: Include <vector>. + (cmdarg_s): Remove typedef. Don't define VEC. + (captured_main_1): Use vector, not VEC. Remove cleanups. + +2016-10-21 Tom Tromey <tom@tromey.com> + * dwarf2loc.c (struct dwarf_expr_context_funcs): Don't declare. (dwarf_expr_read_addr_from_reg, dwarf_expr_get_reg_value) (dwarf_expr_read_mem, dwarf_expr_frame_base): Rename; turn into |