parser.c (cp_parser_init_declarator): Pass LOOKUP_NORMAL to cp_finish_decl.

* parser.c (cp_parser_init_declarator): Pass LOOKUP_NORMAL
	to cp_finish_decl.

From-SVN: r162377
This commit is contained in:
Jason Merrill 2010-07-21 10:37:56 -04:00 committed by Jason Merrill
parent 75a75e91fd
commit 557165ae94
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-21 Jason Merrill <jason@redhat.com>
* parser.c (cp_parser_init_declarator): Pass LOOKUP_NORMAL
to cp_finish_decl.
2010-07-20 Jeffrey Yasskin <jyasskin@google.com>
PR c++/44641

View File

@ -14089,7 +14089,7 @@ cp_parser_init_declarator (cp_parser* parser,
`explicit' constructor is OK. Otherwise, an
`explicit' constructor cannot be used. */
((is_direct_init || !is_initialized)
? 0 : LOOKUP_ONLYCONVERTING));
? LOOKUP_NORMAL : LOOKUP_IMPLICIT));
}
else if ((cxx_dialect != cxx98) && friend_p
&& decl && TREE_CODE (decl) == FUNCTION_DECL)