Changes in src/AST/Pass.hpp [164a6b6:d7c0ad5]
- File:
-
- 1 edited
-
src/AST/Pass.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.hpp
r164a6b6 rd7c0ad5 233 233 private: 234 234 235 bool __visit_children() { bool* ptr = __pass::visit_children(core, 0); return ptr ? *ptr : true; }235 bool __visit_children() { __pass::bool_ref * ptr = __pass::visit_children(core, 0); return ptr ? *ptr : true; } 236 236 237 237 private: … … 342 342 /// set visit_children false of all child nodes should be ignored 343 343 struct WithShortCircuiting { 344 boolvisit_children;344 __pass::bool_ref visit_children; 345 345 }; 346 346
Note:
See TracChangeset
for help on using the changeset viewer.