forked from boostorg/regex
Update heuristics used to determine max state count, following a bug report from SAP.
Updated tests to match. [SVN r35656]
This commit is contained in:
@ -427,9 +427,9 @@ private:
|
||||
// matching flags in use:
|
||||
match_flag_type m_match_flags;
|
||||
// how many states we have examined so far:
|
||||
difference_type state_count;
|
||||
boost::uintmax_t state_count;
|
||||
// max number of states to examine before giving up:
|
||||
difference_type max_state_count;
|
||||
boost::uintmax_t max_state_count;
|
||||
// whether we should ignore case or not:
|
||||
bool icase;
|
||||
// set to true when (position == last), indicates that we may have a partial match:
|
||||
|
Reference in New Issue
Block a user