Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.impl.h

    r62423350 r2a7b3ca  
    33#define VISIT_START( node )                     \
    44        __attribute__((unused))                   \
    5         guard_value_impl guard( at_cleanup_impl(pass, 0) );       \
     5        const auto & guard = init_guard();        \
    66        bool visit_children = true;               \
    77        set_visit_children( visit_children );   \
     
    1515#define MUTATE_START( node )                    \
    1616        __attribute__((unused))                   \
    17         guard_value_impl guard( at_cleanup_impl(pass, 0) );       \
     17        const auto & guard = init_guard();        \
    1818        bool visit_children = true;               \
    1919        set_visit_children( visit_children );   \
Note: See TracChangeset for help on using the changeset viewer.