Ignore:
Timestamp:
May 7, 2024, 7:04:31 PM (17 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
6d9aa79
Parents:
c333ed2 (diff), 083e637 (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
  • doc/theses/mike_brooks_MMath/programs/lst-issues-wrapped-byref.run.cpp

    rc333ed2 r0b6c1c9  
    2222struct req {
    2323        int pri, rqr;
     24
    2425};
    2526
    2627
     28list<req *> reqs;
    2729
    2830
    29 list<req*> reqs;
     31req r1 = {1, 42}, r2 = {2, 42};
    3032
    31 
    32 req
    33         r1 = {1, 42},
    34         r2 = {2, 42};
    35 
    36 reqs.push_front(
    37         &r2);
    38 reqs.push_front(
    39         &r1);
     33reqs.push_front(&r2);
     34reqs.push_front(&r1);
    4035
    4136
Note: See TracChangeset for help on using the changeset viewer.