This code compiles and run (Parsing backtrace_symbols)
In gcc I get "regex_error" exception on call to regex_match while in VS2017 it doesnt?!?
const std::regex r( R"(\((\w*)\+\w*\)\s+\[(\w+)\])");
std::smatch m;
const bool bMatch = std::regex_match(curStr,m,r);
Can someone explain?