Changeset 69dd8e6 for src/AST/Pass.hpp


Ignore:
Timestamp:
May 6, 2024, 1:18:30 PM (4 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
b2ea0cd, f5cb7c2
Parents:
ac16a55 (diff), 164a6b6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.hpp

    rac16a55 r69dd8e6  
    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.