re PR c++/14143 (Overeager ADL)

PR c++/14143
	* name-lookup.c	(arg_assoc_class): Don't look into template
	arguments if it is not a primary template.

From-SVN: r78287
This commit is contained in:
Giovanni Bajo 2004-02-23 05:10:37 +00:00
parent c5f7ba9ee7
commit 146d3c99f0
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,12 @@
2004-02-23 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/14143
* name-lookup.c (arg_assoc_class): Don't look into template
arguments if it is not a primary template.
2004-02-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR c++/12007
PR c++/12007
* method.c (use_thunk): Always clone function argument tree.
2004-02-20 Mark Mitchell <mark@codesourcery.com>

View File

@ -4279,7 +4279,8 @@ arg_assoc_class (struct arg_lookup *k, tree type)
return true;
/* Process template arguments. */
if (CLASSTYPE_TEMPLATE_INFO (type))
if (CLASSTYPE_TEMPLATE_INFO (type)
&& PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
{
list = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
for (i = 0; i < TREE_VEC_LENGTH (list); ++i)