Excellent, excellent - thanks!
On Mon, Oct 1, 2018 at 10:22 AM Richard Smith wrote:
> On Mon, 1 Oct 2018, 09:55 David Blaikie via cfe-commits, <
> cfe-commits@lists.llvm.org> wrote:
>
>> Awesome - should/does this mean stateless lambdas can be used in
>> uninitialized contexts?
>>
>> std::set> }
On Mon, 1 Oct 2018, 09:55 David Blaikie via cfe-commits, <
cfe-commits@lists.llvm.org> wrote:
> Awesome - should/does this mean stateless lambdas can be used in
> uninitialized contexts?
>
> std::set })> s;
>
> Would be kind of neat/handy (so you didn't have to pass in the comparator
> on construc
Awesome - should/does this mean stateless lambdas can be used in
uninitialized contexts?
std::set
s;
Would be kind of neat/handy (so you didn't have to pass in the comparator
on construction, etc)
On Thu, Sep 27, 2018 at 3:48 PM Richard Smith via cfe-commits <
cfe-commits@lists.llvm.org> wrote:
Author: rsmith
Date: Thu Sep 27 15:47:04 2018
New Revision: 343279
URL: http://llvm.org/viewvc/llvm-project?rev=343279&view=rev
Log:
[cxx2a] P0624R2: Lambdas with no capture-default are
default-constructible and assignable.
Added:
cfe/trunk/test/SemaCXX/cxx2a-lambda-default-ctor-assign.cpp
Mo