Changeset 19de7864 for libcfa/src/bits/queue.hfa
- Timestamp:
- Dec 17, 2020, 12:28:03 PM (2 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 7522692
- Parents:
- 28e88d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/queue.hfa
r28e88d7 r19de7864 3 3 #include "bits/collection.hfa" 4 4 5 forall( dtype T | { T *& Next ( T * ); bool listed ( T * );} ) {5 forall( dtype T | { T *& Next ( T * ); } ) { 6 6 struct Queue { 7 7 inline Collection; // Plan 9 inheritance … … 142 142 } // distribution 143 143 144 forall( dtype T | { T *& Next ( T * ); bool listed ( T * );} ) {144 forall( dtype T | { T *& Next ( T * ); } ) { 145 145 struct QueueIter { 146 146 inline ColIter; // Plan 9 inheritance
Note: See TracChangeset
for help on using the changeset viewer.