Ticket #6709: warning.patch

File warning.patch, 1.1 KB (added by anonymous, 11 years ago)
  • boost/regex/v4/basic_regex_creator.hpp

     
    10351035               state = rep->alt.p;
    10361036               continue;
    10371037            }
    1038             else if((state->type == syntax_element_long_set_rep))
     1038            else if(state->type == syntax_element_long_set_rep)
    10391039            {
    10401040               BOOST_ASSERT(rep->next.p->type == syntax_element_long_set);
    10411041               if(static_cast<re_set_long<mask_type>*>(rep->next.p)->singleton == 0)
     
    13381338            re_syntax_base* p = m_pdata->m_first_state;
    13391339            while(p)
    13401340            {
    1341                if((p->type == syntax_element_recurse))
     1341               if(p->type == syntax_element_recurse)
    13421342               {
    13431343                  re_brace* p2 = static_cast<re_brace*>(static_cast<re_jump*>(p)->alt.p);
    13441344                  if((p2->type == syntax_element_startmark) && (p2->index == static_cast<re_brace*>(state)->index))