Compare commits

...

3 Commits

Author SHA1 Message Date
61391335fa Create maintenance branch for 1.41.
[SVN r57781]
2009-11-19 06:09:27 +00:00
ad4d7ae5ae Release 1.41.0
[SVN r57747]
2009-11-18 14:58:26 +00:00
95ddff1f01 Suppress gcc-4.4.1 warnings.
[SVN r57366]
2009-11-04 17:22:59 +00:00

View File

@ -2008,7 +2008,7 @@ insert_recursion:
v = static_cast<int>(hash_value_from_capture_name(base, m_position));
re_brace* br = static_cast<re_brace*>(this->append_state(syntax_element_assert_backref, sizeof(re_brace)));
br->index = v;
if((*m_position != charT('>')) && (*m_position != charT('\'')) || (++m_position == m_end))
if(((*m_position != charT('>')) && (*m_position != charT('\''))) || (++m_position == m_end))
{
fail(regex_constants::error_badrepeat, m_position - m_base);
return false;