This is the mail archive of the gcc-bugs@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: c++/3230: False warning for 'returning reference to temporary'


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


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