Remove char_ptr typedef

Now that all instances of VEC(char_ptr) are gone, we can remove the
typedef.  There is just one usage left, that is trivial to replace.

Tested by rebuilding on an enable-targets=all build.

gdb/ChangeLog:

	* common/gdb_vecs.h (char_ptr): Remove.
	* tracepoint.c (encode_actions_1): Remove usage of char_ptr.
This commit is contained in:
Simon Marchi
2018-04-01 14:23:17 -04:00
parent a16ffec0da
commit ec1f2d91e0
3 changed files with 6 additions and 2 deletions

View File

@@ -22,7 +22,6 @@
#include "vec.h"
typedef char *char_ptr;
typedef const char *const_char_ptr;
DEF_VEC_P (const_char_ptr);