Ignore:
File:
1 edited

Legend:

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

    r4b78d25 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.