Ignore:
Timestamp:
Apr 25, 2025, 7:39:09 AM (8 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
65bd3c2
Parents:
b195498
Message:

change backquote call to regular call

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/collection.hfa

    rb195498 r6b33e89  
    2626        // PUBLIC
    2727
    28         void ?{}( Colable & co ) with( co ) {
    29                 next = 0p;
     28        void ?{}( Colable & co ) {
     29                co.next = 0p;
    3030        } // post: ! listed()
    3131
    3232        // return true iff *this is an element of a collection
    33         bool listed( Colable & co ) with( co ) {                        // pre: this != 0
    34                 return next != 0p;
     33        bool listed( Colable & co ) {                                           // pre: this != 0
     34                return co.next != 0p;
    3535        }
    3636
Note: See TracChangeset for help on using the changeset viewer.