Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Convert.cpp

    r361bf01 rb3a0df6  
    12171217
    12181218        const ast::Type * postvisit( const ast::BaseInstType * old, ReferenceToType * ty ) {
     1219                ty->forall = get<TypeDecl>().acceptL( old->forall );
    12191220                ty->parameters = get<Expression>().acceptL( old->params );
    12201221                ty->hoistType = old->hoistType;
     
    26152616
    26162617        void postvisit( const ReferenceToType * old, ast::BaseInstType * ty ) {
     2618                ty->forall = GET_ACCEPT_V( forall, TypeDecl );
    26172619                ty->params = GET_ACCEPT_V( parameters, Expr );
    26182620                ty->hoistType = old->hoistType;
Note: See TracChangeset for help on using the changeset viewer.