aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/cp-tree.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-02 20:49:16 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-02 20:49:16 +0000
commitaff447417f3d5cd331129f0646d5da16e915b3fe (patch)
tree8f5237cf0617ac2ff64933da95c37fa5dde1cba2 /gcc/cp/cp-tree.h
parent6fb58bba49ae8e0afaf502975e6fa30cbc288ed0 (diff)
downloadgcc-aff447417f3d5cd331129f0646d5da16e915b3fe.zip
gcc-aff447417f3d5cd331129f0646d5da16e915b3fe.tar.gz
gcc-aff447417f3d5cd331129f0646d5da16e915b3fe.tar.bz2
class.c (current_lang_depth, [...]): Use VEC instead of VARRAY.
* class.c (current_lang_depth, push_lang_context, pop_lang_context): Use VEC instead of VARRAY. * cp-tree.h (saved_scope): Use VEC for lang_base instead of VARRAY. * name-lookup.c (push_to_top_level): Use VEC instead of VARRAY. From-SVN: r99121
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r--gcc/cp/cp-tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h
index 53f19f2..b057581 100644
--- a/gcc/cp/cp-tree.h
+++ b/gcc/cp/cp-tree.h
@@ -659,7 +659,7 @@ struct saved_scope GTY(())
tree class_type;
tree access_specifier;
tree function_decl;
- varray_type lang_base;
+ VEC(tree,gc) *lang_base;
tree lang_name;
tree template_parms;
struct cp_binding_level *x_previous_class_level;