- Timestamp:
- Jun 26, 2018, 1:48:42 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- b16923d
- Parents:
- 88d955f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.yy
r88d955f r3fd8b0e 1893 1893 { distExt( $3 ); $$ = distAttr( $2, $3 ); } // mark all fields in list 1894 1894 | typedef_declaration ';' // CFA 1895 { SemanticError( yylloc, "Typedef in aggregate is currently unimplemented." ); $$ = nullptr; }1896 1895 | cfa_field_declaring_list ';' // CFA, new style field declaration 1897 1896 | EXTENSION cfa_field_declaring_list ';' // GCC 1898 1897 { distExt( $2 ); $$ = $2; } // mark all fields in list 1899 1898 | cfa_typedef_declaration ';' // CFA 1900 { SemanticError( yylloc, "Typedef in aggregate is currently unimplemented." ); $$ = nullptr; }1901 1899 | static_assert // C11 1902 1900 ;
Note: See TracChangeset
for help on using the changeset viewer.