Re: C++ PATCH to implement fold-expressions

2015-09-17 Thread Jason Merrill
On 09/17/2015 02:04 PM, Jason Merrill wrote: Back in January Andrew mostly implemented C++1z fold-expressions (https://isocpp.org/files/papers/n4295.html), but the patch broke bootstrap. I've fixed it up now and am committing it to the trunk. Andrew: The main change I made was to drop tentative

Re: C++ PATCH to implement fold-expressions

2015-09-17 Thread Andrew Sutton
Fantastic. I've wanted to get back to this, but since school started back up, I haven't had any time to look at it. Thanks! Andrew On Thu, Sep 17, 2015 at 2:04 PM, Jason Merrill wrote: > Back in January Andrew mostly implemented C++1z fold-expressions > (https://isocpp.org/files/papers/n4295.h

C++ PATCH to implement fold-expressions

2015-09-17 Thread Jason Merrill
Back in January Andrew mostly implemented C++1z fold-expressions (https://isocpp.org/files/papers/n4295.html), but the patch broke bootstrap. I've fixed it up now and am committing it to the trunk. Andrew: The main change I made was to drop tentative parsing in favor of scanning the tokens ah