Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.hpp

    rd7c0ad5 r164a6b6  
    233233private:
    234234
    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; }
    236236
    237237private:
     
    342342/// set visit_children false of all child nodes should be ignored
    343343struct WithShortCircuiting {
    344         __pass::bool_ref visit_children;
     344        bool visit_children;
    345345};
    346346
Note: See TracChangeset for help on using the changeset viewer.