diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2018-03-30 17:18:56 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2018-03-30 17:18:56 -0400 |
commit | d8611974cf819e5f8cb9eb36907251f3e2d721c6 (patch) | |
tree | 6f2a14e0ee4a7831ed5a9688dab2f8ba56052b19 /gdb/common | |
parent | 17d08cd4137063dbc43d9989b9a5cb315171174f (diff) | |
download | gdb-d8611974cf819e5f8cb9eb36907251f3e2d721c6.zip gdb-d8611974cf819e5f8cb9eb36907251f3e2d721c6.tar.gz gdb-d8611974cf819e5f8cb9eb36907251f3e2d721c6.tar.bz2 |
Remove usage of VEC(char_ptr) in gdbscm_parse_function_args
This is a straightforward replacement, no change in behavior are
intended/expected.
This is the last usage of VEC(char_ptr), so it can now be removed.
gdb/ChangeLog:
* guile/scm-utils.c (gdbscm_parse_function_args): Replace VEC
with std::vector.
* common/gdb_vecs.h (DEF_VEC_P (char_ptr)): Remove.
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/gdb_vecs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/common/gdb_vecs.h b/gdb/common/gdb_vecs.h index 7318e53..8bb7015 100644 --- a/gdb/common/gdb_vecs.h +++ b/gdb/common/gdb_vecs.h @@ -25,8 +25,6 @@ typedef char *char_ptr; typedef const char *const_char_ptr; -DEF_VEC_P (char_ptr); - DEF_VEC_P (const_char_ptr); /* Split STR, a list of DELIMITER-separated fields, into a char pointer vector. |