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

2016-11-02 Thread NightStrike
On Wed, Nov 2, 2016 at 9:07 PM, Jim Michaels wrote: > #include > #include > int main(void) { > std::cout<<(std::regex_match("abcdefg",std::regex("def",std::regex_constants::extended))?"true":"false")< return 0;} > > corrected some more bugs in that example and got "false". not sure why > this is

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

2016-11-02 Thread NightStrike
On Wed, Nov 2, 2016 at 8:09 PM, Jim Michaels wrote: > namespace str { > std::string str::localestringlower(std::string s) { > //not sure if std::locale:: will solve conflicting namespaces > between and > for (size_t i=0; i < s.size(); i++) { > s[i]=std

Re: [Mingw-w64-public] [PATCH] lib32 msvcrt add mkgmtime exports - XP support?

2016-11-02 Thread Jim Michaels
I get enough XP boxes coming my way that spare my backside that I wish XP support would not stop. still trying to get my win7 box up and going again after hw failure. On Wed, November 2, 2016 4:27 pm, JonY wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > > On 11/2/2016 16:56, Adri

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

2016-11-02 Thread Jim Michaels
#include #include int main(void) { std::cout<<(std::regex_match("abcdefg",std::regex("def",std::regex_constants::extended))?"true":"false")< namespace str { std::string str::localestringlower(std::string s) { > //not sure if std::locale:: will solve conflicting namespaces > between and for (siz

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

2016-11-02 Thread Jim Michaels
namespace str { std::string str::localestringlower(std::string s) { //not sure if std::locale:: will solve conflicting namespaces between and for (size_t i=0; i < s.size(); i++) { s[i]=std::tolower(s[i]); } return s; } } here

Re: [Mingw-w64-public] [PATCH] lib32 msvcrt add mkgmtime exports - XP support?

2016-11-02 Thread JonY
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 11/2/2016 16:56, Adrien Nader wrote: > Hi, > > A small thread hijack. > > On Mon, Oct 31, 2016, Martell Malone wrote: >> Hey guys, >> >> My only concern is if this is supported on windows xp. >> https://msdn.microsoft.com/en-us/library/2093ets

Re: [Mingw-w64-public] [PATCH] lib32 msvcrt add mkgmtime exports - XP support?

2016-11-02 Thread Adrien Nader
Hi, A small thread hijack. On Mon, Oct 31, 2016, Martell Malone wrote: > Hey guys, > > My only concern is if this is supported on windows xp. > https://msdn.microsoft.com/en-us/library/2093ets1.aspx > MSDN has a doc version from VS2005. > I don't see anything about a min windows version there. >