diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-02-07 19:06:51 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-02-07 19:06:51 +0000 |
commit | 2ba95b9b7657de57799431f196136961875475c9 (patch) | |
tree | f07e8a389282dfc63f79919c12651264f21785f6 /gdb/ChangeLog | |
parent | ea696b7b781e97c6988512296e1a876617da765f (diff) | |
download | gdb-2ba95b9b7657de57799431f196136961875475c9.zip gdb-2ba95b9b7657de57799431f196136961875475c9.tar.gz gdb-2ba95b9b7657de57799431f196136961875475c9.tar.bz2 |
* ada-lang.c: #include "vec.h".
(struct string_vector, new_string_vector, string_vector_append):
Delete.
(char_ptr): New typedef.
(DEF_VEC_P (char_ptr)): New VEC type.
(symbol_completion_add): Update profile to take the new VEC type
instead of the old string_vector structure. Update code accordingly.
(ada_make_symbol_completion_list): Use the new VEC type instead of
the old string_vector structure, and update the code accordingly.
* Makefile.in (ada-lang.o): Add dependency on vec.h.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eed9485..1299071 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +2007-02-07 Joel Brobecker <brobecker@adacore.com> + + * ada-lang.c: #include "vec.h". + (struct string_vector, new_string_vector, string_vector_append): + Delete. + (char_ptr): New typedef. + (DEF_VEC_P (char_ptr)): New VEC type. + (symbol_completion_add): Update profile to take the new VEC type + instead of the old string_vector structure. Update code accordingly. + (ada_make_symbol_completion_list): Use the new VEC type instead of + the old string_vector structure, and update the code accordingly. + * Makefile.in (ada-lang.o): Add dependency on vec.h. + 2008-02-06 Pierre Muller <muller@ics.u-strasbg.fr> * p-exp.y: Set current_type in missing places. |