Changes in src/AST/Pass.hpp [d7c0ad5:164a6b6]
- File:
-
- 1 edited
-
src/AST/Pass.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.hpp
rd7c0ad5 r164a6b6 233 233 private: 234 234 235 bool __visit_children() { __pass::bool_ref* ptr = __pass::visit_children(core, 0); return ptr ? *ptr : true; }235 bool __visit_children() { bool * 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 __pass::bool_refvisit_children;344 bool visit_children; 345 345 }; 346 346
Note:
See TracChangeset
for help on using the changeset viewer.