This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: incomplete type return types


Gabriel Dos Reis wrote:

> The resason here is that, after we complained that A is incomplete
> (therefore cannot be used as return type in the function definition),
> cp/decl.c:check_function_type() changes the return type to void, thus 
> giving misleading diagnostic later.

That's the bug.  It should change the return type to error_mark_node,
and then the code that check returns should be silent in that case.

-- 
Mark Mitchell
CodeSourcery, LLC
mark@codesourcery.com
(916) 791-8304


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]