Re: [Mingw-w64-public] std::regex not fulfilling standard? missing templates

2016-11-01 Thread NightStrike
On Tue, Nov 1, 2016 at 2:14 PM, Jim Michaels wrote: > problem with std::regex not fulfilling standard? > for this code I got the below > > for (intmax_t i=0; i < > regexPatterns.size()&&(findit=findIt||!std::regex_match(sline, > std::regex(findstr,

[Mingw-w64-public] std::regex not fulfilling standard? missing templates

2016-11-01 Thread Jim Michaels
problem with std::regex not fulfilling standard? for this code I got the below for (intmax_t i=0; i < regexPatterns.size()&&(findit=findIt||!std::regex_match(sline, std::regex(findstr, std::regex(regexPatterns[i], std::regex_constants::extended | (icase?std::regex_constants::icase:0)); i++);