C++14 digit separators..

2013-10-27 Thread Ed Smith-Rowland
Here is an implementation for C++14 digit separators (single quote). It's still testing on x86_64-linux but I wanted to give folks a chance to check it out. Ed libcpp: 2013-10-28 Edward Smith-Rowland <3dw...@verizon.net> implement C++14 digit separators.

Re: C++14 digit separators..

2013-10-28 Thread Václav Zeman
On 10/28/2013 03:51 AM, Ed Smith-Rowland wrote: > Here is an implementation for C++14 digit separators (single quote). > > It's still testing on x86_64-linux but I wanted to give folks a chance > to check it out. > > Ed > > Index: gcc/testsuite

Re: C++14 digit separators..

2013-10-28 Thread Joseph S. Myers
On Sun, 27 Oct 2013, Ed Smith-Rowland wrote: > Here is an implementation for C++14 digit separators (single quote). I tend to think that such features should come with a test that the feature is not enabled for language / standard versions for which it shouldn't be. That is, someth

Re: C++14 digit separators..

2013-10-28 Thread Jason Merrill
On 10/28/2013 09:10 AM, Joseph S. Myers wrote: On Sun, 27 Oct 2013, Ed Smith-Rowland wrote: Here is an implementation for C++14 digit separators (single quote). I tend to think that such features should come with a test that the feature is not enabled for language / standard versions for

Re: C++14 digit separators..

2013-10-30 Thread Ed Smith-Rowland
On 10/28/2013 09:44 AM, Jason Merrill wrote: On 10/28/2013 09:10 AM, Joseph S. Myers wrote: On Sun, 27 Oct 2013, Ed Smith-Rowland wrote: Here is an implementation for C++14 digit separators (single quote). I tend to think that such features should come with a test that the feature is not

Re: C++14 digit separators..

2013-10-31 Thread Jason Merrill
OK. Jason