We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The exceptions are thrown from here:
25│ Regex::Regex(const char * regex, int flags) 26│ { 27│ auto errCode = regcomp(&exp, regex, flags); 28│ if (errCode != 0) { 29│ auto size = regerror(errCode, &exp, nullptr, 0); 30│ if (size) { 31│ std::string msg(size, '\0'); 32│ regerror(errCode, &exp, &msg.front(), size); 33├───────────> throw LibraryException(errCode, msg); 34│ } 35│ throw LibraryException(errCode, ""); 36│ } 37│ }
The failing regex:
(gdb) p regex $1 = 0x80046aace "^(\\S*)\\s*(<=|>=|<|>|=|==)?\\s*(\\S*)$" (gdb) p errCode $2 = 5
Version: 0.69.0 OS: FreeBSD 13.1 STABLE
The text was updated successfully, but these errors were encountered:
0.70.0 still has the same failure.
Sorry, something went wrong.
jrohel
No branches or pull requests
The exceptions are thrown from here:
The failing regex:
Version: 0.69.0
OS: FreeBSD 13.1 STABLE
The text was updated successfully, but these errors were encountered: