Re: [PATCH] PR libstdc++/81002 fix std::basic_regex range constructor

2017-06-07 Thread Jonathan Wakely
On 07/06/17 16:45 +0100, Jonathan Wakely wrote: Apparently std::basic_regex construction from forward iterators has never worked, because the call to __compile_nfa doesn't give the traits type. This reorders the template parameters so that only the traits type needs to be given explicitly, and th

[PATCH] PR libstdc++/81002 fix std::basic_regex range constructor

2017-06-07 Thread Jonathan Wakely
Apparently std::basic_regex construction from forward iterators has never worked, because the call to __compile_nfa doesn't give the traits type. This reorders the template parameters so that only the traits type needs to be given explicitly, and the iterator type can be deduced. PR libst