Ignore:
File:
1 edited

Legend:

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

    rd0502a3 rfd54fef  
    151151                }
    152152
    153                 void append( __queue(T) & this, T * val ) with(this) {
     153                void append( __queue(T) & this, T * val ) with( this ) {
    154154                        verify(this.tail != 0p);
    155155                        verify(*this.tail == 1p);
     
    161161                T * peek( __queue(T) & this ) {
    162162                        verify(*this.tail == 1p);
    163                         T * frontnode = this.head;
    164                         if( frontnode != 1p ) {
     163                        T * front = this.head;
     164                        if( front != 1p ) {
    165165                                verify(*this.tail == 1p);
    166                                 return frontnode;
     166                                return front;
    167167                        }
    168168                        verify(*this.tail == 1p);
Note: See TracChangeset for help on using the changeset viewer.