Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    ra7741435 r8f60f0b  
    8383%token TYPEOF LABEL                                                                             // GCC
    8484%token ENUM STRUCT UNION
    85 %token OTYPE FTYPE DTYPE TRAIT                                                  // CFA
     85%token OTYPE FTYPE DTYPE TTYPE TRAIT                                                    // CFA
    8686%token SIZEOF OFFSETOF
    8787%token ATTRIBUTE EXTENSION                                                              // GCC
     
    18931893                { $$ = DeclarationNode::Otype; }
    18941894        | DTYPE
     1895                { $$ = DeclarationNode::Dtype; }
     1896        | FTYPE
    18951897                { $$ = DeclarationNode::Ftype; }
    1896         | FTYPE
    1897                 { $$ = DeclarationNode::Dtype; }
     1898        | TTYPE
     1899                { $$ = DeclarationNode::Ttype; }
    18981900        ;
    18991901
Note: See TracChangeset for help on using the changeset viewer.