- Timestamp:
- Jul 10, 2024, 3:39:37 AM (19 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 725f777f
- Parents:
- bb336a6 (diff), f3811df (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-attach-reduction.hpp
rbb336a6 rdbff8ec 101 101 class list { 102 102 struct node { 103 @LIST_ENTRY(node) links;@104 @El elem;@103 LIST_ENTRY(node) links; 104 El elem; 105 105 }; 106 106 LIST_HEAD(Impl, node); … … 111 111 } 112 112 void push_front( const El & src ) { 113 node * n = @new node()@;113 node * n = new node(); 114 114 n->elem = src; 115 115 LIST_INSERT_HEAD(&impl, n, links);
Note:
See TracChangeset
for help on using the changeset viewer.