2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>

* cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
	declaration.
	* gdb_vecs.h: Declare `const_char_ptr' VEC.
This commit is contained in:
Sergio Durigan Junior 2012-04-20 16:57:17 +00:00
parent a09130f92f
commit 111dfaae04
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
* cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
declaration.
* gdb_vecs.h: Declare `const_char_ptr' VEC.
2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix compilation compatibility with python-2.4

View File

@ -26,6 +26,7 @@
#include "symtab.h"
#include "vec.h"
#include "gdb_vecs.h"
#include "gdb_obstack.h"
/* Opaque declarations. */
@ -174,8 +175,6 @@ extern struct type *cp_lookup_rtti_type (const char *name,
extern int cp_is_anonymous (const char *namespace);
DEF_VEC_P (const_char_ptr);
extern void cp_add_using_directive (const char *dest,
const char *src,
const char *alias,

View File

@ -25,6 +25,8 @@
DEF_VEC_P (char_ptr);
DEF_VEC_P (const_char_ptr);
/* From utils.c: */
extern void free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec);