Re: C++ PATCHes to xvalue handling

2018-05-25 Thread Jason Merrill
On Fri, May 25, 2018 at 4:08 PM, Jason Merrill wrote: > On Fri, May 25, 2018 at 12:40 PM, Sudakshina Das wrote: >> On 23/05/18 18:21, Jason Merrill wrote: >>> >>> The first patch implements the adjustments from core issues 616 and >>> 1213 to the value category of subobjects of class prvalues: th

Re: C++ PATCHes to xvalue handling

2018-05-25 Thread Jason Merrill
On Fri, May 25, 2018 at 12:40 PM, Sudakshina Das wrote: > On 23/05/18 18:21, Jason Merrill wrote: >> >> The first patch implements the adjustments from core issues 616 and >> 1213 to the value category of subobjects of class prvalues: they were >> considered prvalues themselves, but that was kind

Re: C++ PATCHes to xvalue handling

2018-05-25 Thread Sudakshina Das
On 23/05/18 18:21, Jason Merrill wrote: The first patch implements the adjustments from core issues 616 and 1213 to the value category of subobjects of class prvalues: they were considered prvalues themselves, but that was kind of nonsensical. Now they are considered xvalues. Along with this, I

C++ PATCHes to xvalue handling

2018-05-23 Thread Jason Merrill
The first patch implements the adjustments from core issues 616 and 1213 to the value category of subobjects of class prvalues: they were considered prvalues themselves, but that was kind of nonsensical. Now they are considered xvalues. Along with this, I've removed the diagnostic distinction bet