Changes in src/Common/PassVisitor.impl.h [62423350:2a7b3ca]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r62423350 r2a7b3ca 3 3 #define VISIT_START( node ) \ 4 4 __attribute__((unused)) \ 5 guard_value_impl guard( at_cleanup_impl(pass, 0) );\5 const auto & guard = init_guard(); \ 6 6 bool visit_children = true; \ 7 7 set_visit_children( visit_children ); \ … … 15 15 #define MUTATE_START( node ) \ 16 16 __attribute__((unused)) \ 17 guard_value_impl guard( at_cleanup_impl(pass, 0) );\17 const auto & guard = init_guard(); \ 18 18 bool visit_children = true; \ 19 19 set_visit_children( visit_children ); \
Note:
See TracChangeset
for help on using the changeset viewer.