- Timestamp:
- May 7, 2024, 7:04:31 PM (17 months ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/programs/lst-issues-wrapped-byref.run.cpp
rc333ed2 r0b6c1c9 22 22 struct req { 23 23 int pri, rqr; 24 24 25 }; 25 26 26 27 28 list<req *> reqs; 27 29 28 30 29 list<req*> reqs;31 req r1 = {1, 42}, r2 = {2, 42}; 30 32 31 32 req 33 r1 = {1, 42}, 34 r2 = {2, 42}; 35 36 reqs.push_front( 37 &r2); 38 reqs.push_front( 39 &r1); 33 reqs.push_front(&r2); 34 reqs.push_front(&r1); 40 35 41 36
Note:
See TracChangeset
for help on using the changeset viewer.