Re: C++ PATCH to implement C++17 variadic using

2017-01-10 Thread Jason Merrill
On Mon, Jan 9, 2017 at 4:50 PM, Jason Merrill wrote: > The last C++17 feature was pretty trivial to implement, as expected. ...and the feature-test macro. commit 9926adaa233a28474a12d16601a4f5a1204efbee Author: Jason Merrill Date: Mon Jan 9 17:37:21 2017 -0500 * c-cppbuiltin.c (c_

Re: C++ PATCH to implement C++17 variadic using

2017-01-09 Thread Jakub Jelinek
On Mon, Jan 09, 2017 at 05:02:03PM -0500, Jason Merrill wrote: > On Mon, Jan 9, 2017 at 4:56 PM, Jakub Jelinek wrote: > > On Mon, Jan 09, 2017 at 04:50:20PM -0500, Jason Merrill wrote: > >> The last C++17 feature > > > > What about P0490R0? > > That's the response to various national body comment

Re: C++ PATCH to implement C++17 variadic using

2017-01-09 Thread Jason Merrill
On Mon, Jan 9, 2017 at 4:56 PM, Jakub Jelinek wrote: > On Mon, Jan 09, 2017 at 04:50:20PM -0500, Jason Merrill wrote: >> The last C++17 feature > > What about P0490R0? That's the response to various national body comments, I don't see anything in there that I would consider a new feature, most is

C++ PATCH to implement C++17 variadic using

2017-01-09 Thread Jason Merrill
The last C++17 feature was pretty trivial to implement, as expected. Tested x86_64-pc-linux-gnu, applying to trunk. commit 10650d842cd49cad2adb396bc19192bf52975be8 Author: Jason Merrill Date: Mon Jan 9 15:08:47 2017 -0500 Implement P0195R2, C++17 variadic using. *

Re: C++ PATCH to implement C++17 variadic using

2017-01-09 Thread Jakub Jelinek
On Mon, Jan 09, 2017 at 04:50:20PM -0500, Jason Merrill wrote: > The last C++17 feature What about P0490R0? Jakub