Commit 13418b40 by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

* pt.c (tsubst) <ARRAY_REF>: Remove erroneous argument to build_nt.

From-SVN: r73834
parent d43f603d
2003-11-22 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* pt.c (tsubst) <ARRAY_REF>: Remove erroneous argument to build_nt.
2003-11-22 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/5369
* friend.c (is_friend): Handle member function of a class
template as template friend.
......
......@@ -7121,7 +7121,7 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
if (e1 == error_mark_node || e2 == error_mark_node)
return error_mark_node;
return build_nt (ARRAY_REF, e1, e2, tsubst_expr);
return build_nt (ARRAY_REF, e1, e2);
}
case CALL_EXPR:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment