summaryrefslogtreecommitdiff
path: root/gcc/cp/cp-tree.h
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-13 05:05:21 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-13 05:05:21 +0000
commitb48186034999492fb05990f815702e81d214a61d (patch)
treeae6e098ef30e5cb2e485e6f85c2988a71cb36c4b /gcc/cp/cp-tree.h
parentc7ca48eac9a14b2b5233d9deb347bf0e1188ca3f (diff)
downloadgcc-b48186034999492fb05990f815702e81d214a61d.tar.gz
* typeck.c (build_array_ref): Take complain parm.
* cp-tree.h: Add it to prototype. * call.c (build_new_op): Pass it. * class.c (build_vtbl_ref): Pass it. * decl2.c (grok_array_decl): Pass it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159351 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r--gcc/cp/cp-tree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h
index 02e81ebd0f2..a9dc616d829 100644
--- a/gcc/cp/cp-tree.h
+++ b/gcc/cp/cp-tree.h
@@ -5365,7 +5365,8 @@ extern tree build_x_indirect_ref (tree, ref_operator,
tsubst_flags_t);
extern tree cp_build_indirect_ref (tree, ref_operator,
tsubst_flags_t);
-extern tree build_array_ref (location_t, tree, tree);
+extern tree build_array_ref (location_t, tree, tree,
+ tsubst_flags_t);
extern tree get_member_function_from_ptrfunc (tree *, tree);
extern tree cp_build_function_call (tree, tree, tsubst_flags_t);
extern tree cp_build_function_call_vec (tree, VEC(tree,gc) **,