c++/3230: False warning for 'returning reference to temporary'

jason@gcc.gnu.org jason@gcc.gnu.org
Mon Mar 18 06:02:00 GMT 2002


Synopsis: False warning for 'returning reference to temporary'

Responsible-Changed-From-To: gdr->jason
Responsible-Changed-By: jason
Responsible-Changed-When: Mon Mar 18 06:02:19 2002
Responsible-Changed-Why:
    mine
State-Changed-From-To: analyzed->closed
State-Changed-By: jason
State-Changed-When: Mon Mar 18 06:02:19 2002
State-Changed-Why:
    This is not a bug in the compiler.  The standard (5.16) says that the result of your ?: expression is an rvalue, because the two options do not have the same type.  As a result, the return value binds to that rvalue, which is a local temporary.  The EDG compiler gives the same warning.
    
    You may feel that this is a bug in the standard, and I'd be inclined to agree.  But until the standard is fixed, the compiler will continue to work this way.  If you'd like to submit a defect report against the standard, the place for that is comp.std.c++.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=3230



More information about the Gcc-prs mailing list