Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    r361bf01 r6a45bd78  
    17771777        VISIT({
    17781778                guard_symtab guard { *this };
     1779                guard_forall_subs forall_guard { *this, node };
     1780                mutate_forall( node );
    17791781                maybe_accept( node, &StructInstType::params );
    17801782        })
     
    17931795        VISIT({
    17941796                guard_symtab guard { *this };
     1797                guard_forall_subs forall_guard { *this, node };
     1798                mutate_forall( node );
    17951799                maybe_accept( node, &UnionInstType::params );
    17961800        })
     
    18061810
    18071811        VISIT({
     1812                guard_forall_subs forall_guard { *this, node };
     1813                mutate_forall( node );
    18081814                maybe_accept( node, &EnumInstType::params );
    18091815        })
     
    18191825
    18201826        VISIT({
     1827                guard_forall_subs forall_guard { *this, node };
     1828                mutate_forall( node );
    18211829                maybe_accept( node, &TraitInstType::params );
    18221830        })
     
    18331841        VISIT(
    18341842                {
     1843                        guard_forall_subs forall_guard { *this, node };
     1844                        mutate_forall( node );
    18351845                        maybe_accept( node, &TypeInstType::params );
    18361846                }
Note: See TracChangeset for help on using the changeset viewer.