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
Looks like there are two custom regex (or partial regex) implementations: src/oc/regexp.cpp and src/ivos/regexp.cpp.
src/oc/regexp.cpp
src/ivos/regexp.cpp
std::regex has been part of the C++ standard for over a decade. Can we use that?
Remove:
The text was updated successfully, but these errors were encountered:
Linking # #2204. cc'ing @alkino !
Sorry, something went wrong.
ivos/regex.cpp use an unsupported option std::multiline. But I check all usages in nrn_modeldb_ci, everything is simple and does not need that.
ivos/regex.cpp
std::multiline
nrn_modeldb_ci
Maybe we can merge it :$. I will look for the other regex.
Blocked by: BlueBrain/neurodamus#78
alkino
Successfully merging a pull request may close this issue.
Looks like there are two custom regex (or partial regex) implementations:
src/oc/regexp.cpp
andsrc/ivos/regexp.cpp
.std::regex has been part of the C++ standard for over a decade. Can we use that?
Remove:
src/ivos/regexp.cpp
Remove usage of IVOS/regexp #2204src/oc/regexp.cpp
Replace hoc_regexp_* by std::regex #2694The text was updated successfully, but these errors were encountered: