diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2020-05-25 11:40:07 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-05-25 11:40:35 -0400 |
commit | 7dbfcd6f79d9f66e317e61bac5855868f8d20043 (patch) | |
tree | f95c39efbfe3b5f150f93e4c7a1fe202a3b9ad9c /gdbsupport/common-utils.h | |
parent | bea571ebd78ee29cb94adf648fbcda1e109e1be6 (diff) | |
download | gdb-7dbfcd6f79d9f66e317e61bac5855868f8d20043.zip gdb-7dbfcd6f79d9f66e317e61bac5855868f8d20043.tar.gz gdb-7dbfcd6f79d9f66e317e61bac5855868f8d20043.tar.bz2 |
gdbsupport: Drop now unused function 'stringify_argv'
The function did not properly escape special characters
and all uses have been replaced in previous commits, so
drop the now unused function.
gdbsupport/ChangeLog:
* common-utils.cc, common-utils.h (stringify_argv): Drop
now unused function stringify_argv
Change-Id: Id5f861f44eae1f0fbde3476a5eac23a842ed04fc
Diffstat (limited to 'gdbsupport/common-utils.h')
-rw-r--r-- | gdbsupport/common-utils.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdbsupport/common-utils.h b/gdbsupport/common-utils.h index ba03427..30ee412 100644 --- a/gdbsupport/common-utils.h +++ b/gdbsupport/common-utils.h @@ -154,10 +154,6 @@ extern const char *skip_to_space (const char *inp); freeing all the elements. */ extern void free_vector_argv (std::vector<char *> &v); -/* Given a vector of arguments ARGV, return a string equivalent to - joining all the arguments with a whitespace separating them. */ -extern std::string stringify_argv (const std::vector<char *> &argv); - /* Return true if VALUE is in [LOW, HIGH]. */ template <typename T> |