Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r85855b0 rc92bdcc  
    28272827        | enumerator_list ',' visible_hide_opt identifier_or_type_name enumerator_value_opt
    28282828                { $$ = $1->set_last( DeclarationNode::newEnumValueGeneric( $4, $5 ) ); }
    2829         | enumerator_list ',' INLINE type_name
    2830                 { $$ = $1->set_last( DeclarationNode::newEnumInLine( $4->symbolic.name ) ); }
     2829        | enumerator_list ',' INLINE type_name enumerator_value_opt
     2830                { $$ = $1->set_last( DeclarationNode::newEnumValueGeneric( new string("inline"), nullptr ) ); }
    28312831        ;
    28322832
Note: See TracChangeset for help on using the changeset viewer.