Remove dependency on boost::regex from Whiskers#7533
Merged
chriseth merged 1 commit intoargotorg:developfrom Oct 17, 2019
kcy1019:feature/no-boost-regex
Merged
Remove dependency on boost::regex from Whiskers#7533chriseth merged 1 commit intoargotorg:developfrom kcy1019:feature/no-boost-regex
chriseth merged 1 commit intoargotorg:developfrom
kcy1019:feature/no-boost-regex
Conversation
chriseth
reviewed
Oct 16, 2019
chriseth
reviewed
Oct 16, 2019
chriseth
reviewed
Oct 16, 2019
chriseth
reviewed
Oct 16, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
TL;DR
Thanks in advance for advices :)
boost::regex:std::regex:Details
This PR replaces
boost::regexwithstd::regex, as suggested in #6971 and #6997.The biggest difference between
boost::regexandstd::regexis the behavior of dots:boost::regex,.*matches over line breaksstd::regex,.*does not match newline characters(\r,\n).To address the issue, a change is made to the Whiskers regular expression:
.with non-capturing group(?:.|\r|\n)And two compilation options are added to the MSVC case:
-DBOOST_REGEX_NO_LIB: It prevents automatic linking tolibboost_regex.-D_REGEX_MAX_STACK_COUNT=200000L: Microsoft implementation ofstd::regexhas too tight recursion depth limit. This option increases it to 200,000 - which, IMHO, is sufficient for every sane use case.Checklist
Part of #7259.