Commit e46e9f82 by Mark Mitchell Committed by Mark Mitchell

re PR c++/14510 (Lookup error between function name and struct name)

	PR c++/14510
	* decl.c (xref_tag): Disregard non-type declarations when
	looking up a tagged type.

	PR c++/14510
	* g++.dg/lookup/struct2.C: New test.

From-SVN: r79298
parent 4d0c31e6
2004-03-10 Mark Mitchell <mark@codesourcery.com>
PR c++/14510
* decl.c (xref_tag): Disregard non-type declarations when
looking up a tagged type.
2004-03-09 Nathan Sidwell <nathan@codesourcery.com>
PR c++/14397
......
......@@ -9305,7 +9305,7 @@ xref_tag (enum tag_types tag_code, tree name,
}
else
{
tree decl = lookup_name (name, 1);
tree decl = lookup_name (name, 2);
if (decl && DECL_CLASS_TEMPLATE_P (decl))
decl = DECL_TEMPLATE_RESULT (decl);
......
2004-03-10 Mark Mitchell <mark@codesourcery.com>
PR c++/14510
* g++.dg/lookup/struct2.C: New test.
2004-03-10 Uros Bizjak <uros@kss-loka.si>
* gcc.dg/builtins-34.c: New test.
......
// PR c++/14510
struct c {};
namespace A {
int c(struct c*req);
}
int A::c(struct c*req) {}
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