Changes in src/AST/Convert.cpp [6a45bd78:23954b6]
- File:
-
- 1 edited
-
src/AST/Convert.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
r6a45bd78 r23954b6 233 233 const ast::Decl * namedTypePostamble( NamedTypeDecl * decl, const ast::NamedTypeDecl * node ) { 234 234 // base comes from constructor 235 decl->parameters = get<TypeDecl>().acceptL( node->params ); 235 236 decl->assertions = get<DeclarationWithType>().acceptL( node->assertions ); 236 237 declPostamble( decl, node ); … … 1703 1704 cache.emplace( old, decl ); 1704 1705 decl->assertions = GET_ACCEPT_V(assertions, DeclWithType); 1706 decl->params = GET_ACCEPT_V(parameters, TypeDecl); 1705 1707 decl->extension = old->extension; 1706 1708 decl->uniqueId = old->uniqueId; … … 1718 1720 ); 1719 1721 decl->assertions = GET_ACCEPT_V(assertions, DeclWithType); 1722 decl->params = GET_ACCEPT_V(parameters, TypeDecl); 1720 1723 decl->extension = old->extension; 1721 1724 decl->uniqueId = old->uniqueId;
Note:
See TracChangeset
for help on using the changeset viewer.