Changes in / [feacef9:f6664bf2]


Ignore:
Files:
7 deleted
3 edited

Legend:

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

    rfeacef9 rf6664bf2  
    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);
  • libcfa/src/bits/sequence.hfa

    rfeacef9 rf6664bf2  
    3030        // PUBLIC
    3131
    32         void ?{}( Seqable & sq ) {
     32        void ?{}( Seqable & sq ) with( sq ) {
    3333                ((Colable &)sq){};
    34                 sq.back = 0p;
     34                back = 0p;
    3535        } // post: ! listed()
    3636
  • libcfa/src/fstream.hfa

    rfeacef9 rf6664bf2  
    1616#pragma once
    1717
    18 #include "bits/weakso_locks.hfa"
    1918#include "iostream.hfa"
    2019#include <exception.hfa>
     
    3534        char $separator[sepSize];
    3635        char $tupleSeparator[sepSize];
    37 //      multiple_acquisition_lock lock;
    3836}; // ofstream
    3937
Note: See TracChangeset for help on using the changeset viewer.