Regex: Fix recursive algorithm builds.

This commit is contained in:
jzmaddock
2017-11-09 18:13:16 +00:00
parent e94f079215
commit 1480e33dc6

View File

@ -378,7 +378,10 @@ public:
BidiIterator l_base)
: m_result(what), base(first), last(end),
position(first), backstop(l_base), re(e), traits_inst(e.get_traits()),
m_independent(false), next_count(&rep_obj), rep_obj(&next_count), m_recursions(0)
m_independent(false), next_count(&rep_obj), rep_obj(&next_count)
#ifdef BOOST_REGEX_NON_RECURSIVE
, m_recursions(0)
#endif
{
construct_init(e, f);
}