This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/3230: False warning for 'returning reference to temporary'
- From: Gabriel Dos Reis <gdr at codesourcery dot com>
- To: jason at gcc dot gnu dot org
- Cc: andrewp at andypo dot net, gcc-bugs at gcc dot gnu dot org, gdr at gcc dot gnu dot org, gcc-gnats at gcc dot gnu dot org
- Date: 21 Mar 2002 09:17:51 +0100
- Subject: Re: c++/3230: False warning for 'returning reference to temporary'
- Organization: CodeSourcery, LLC
- References: <20020318140221.32532.qmail@sources.redhat.com>
jason@gcc.gnu.org writes:
| 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.
OK.
| 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.
I'll raise the issue on the core group refelector.
-- Gaby