Changeset feacef9
- Timestamp:
- Feb 16, 2021, 1:32:52 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 5407cdc
- Parents:
- f6664bf2 (diff), d0502a3 (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. - Files:
-
- 7 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/containers.hfa
rf6664bf2 rfeacef9 151 151 } 152 152 153 void append( __queue(T) & this, T * val ) with( this) {153 void append( __queue(T) & this, T * val ) with(this) { 154 154 verify(this.tail != 0p); 155 155 verify(*this.tail == 1p); … … 161 161 T * peek( __queue(T) & this ) { 162 162 verify(*this.tail == 1p); 163 T * front = this.head;164 if( front != 1p ) {163 T * frontnode = this.head; 164 if( frontnode != 1p ) { 165 165 verify(*this.tail == 1p); 166 return front ;166 return frontnode; 167 167 } 168 168 verify(*this.tail == 1p); -
libcfa/src/bits/sequence.hfa
rf6664bf2 rfeacef9 30 30 // PUBLIC 31 31 32 void ?{}( Seqable & sq ) with( sq ){32 void ?{}( Seqable & sq ) { 33 33 ((Colable &)sq){}; 34 back = 0p;34 sq.back = 0p; 35 35 } // post: ! listed() 36 36 -
libcfa/src/fstream.hfa
rf6664bf2 rfeacef9 16 16 #pragma once 17 17 18 #include "bits/weakso_locks.hfa" 18 19 #include "iostream.hfa" 19 20 #include <exception.hfa> … … 34 35 char $separator[sepSize]; 35 36 char $tupleSeparator[sepSize]; 37 // multiple_acquisition_lock lock; 36 38 }; // ofstream 37 39
Note: See TracChangeset
for help on using the changeset viewer.