Ignore:
Timestamp:
Jan 29, 2025, 9:09:20 AM (11 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
a22e8b4
Parents:
a950021 (diff), c699602 (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
  • tests/collections/sequence.cfa

    ra950021 r49510db  
    3131        }
    3232        sout | "empty" | nl;
    33        
     33
    3434        for ( i; 10 ) {
    3535                add( fred, *new( 2 * i ) );
     
    5151        }
    5252        sout | nl;
    53        
     53
    5454        for ( i; 10 ) {
    5555                addTail( fred, *new( 2 * i + 1 ) );
     
    156156                int j;
    157157        };
     158        __attribute__((unused))
    158159        void ?{}( Mary & mary ) { abort(); }
    159160        void ?{}( Mary & mary, int p ) with( mary ) {
     
    176177        }
    177178        sout | "empty" | nl;
    178        
     179
    179180        for ( i; 10 ) {
    180181                add( mary, *new( 2 * i ) );
     
    187188        }
    188189        sout | nl;
    189        
     190
    190191        for ( i; 9 ) {
    191192                delete( &dropHead( mary ) );
     
    196197        }
    197198        sout | nl;
    198        
     199
    199200        for ( i; 10 ) {
    200201                addTail( mary, *new( 2 * i + 1 ) );
Note: See TracChangeset for help on using the changeset viewer.