Ignore:
Timestamp:
May 24, 2024, 2:18:56 PM (6 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
a4808ad
Parents:
c721105
Message:

program updates to match text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/programs/lst-issues-attach-reduction.hpp

    rc721105 rdf699e0  
    101101class list {
    102102        struct node {
    103                 LIST_ENTRY(node) links;
    104                 El elem;
     103                @LIST_ENTRY(node) links;@
     104                @El elem;@
    105105        };
    106106        LIST_HEAD(Impl, node);
     
    111111        }
    112112        void push_front( const El & src ) {
    113                 node * n = new node();
     113                node * n = @new node()@;
    114114                n->elem = src;
    115115                LIST_INSERT_HEAD(&impl, n, links);
Note: See TracChangeset for help on using the changeset viewer.