Ignore:
File:
1 edited

Legend:

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

    rfd54fef rf706697  
    3131
    3232        // // wrappers to make Collection have T
    33         // forall( T & ) {
     33        // forall( dtype T ) {
    3434        //      T *& Next( T * n ) {
    3535        //              return (T *)Next( (Colable *)n );
     
    3838} // distribution
    3939
    40 forall( T & | { T *& Next ( T * ); } ) {
     40static inline forall( dtype T | { T *& Next ( T * ); } ) {
    4141        bool listed( T * n ) {
    4242                return Next( n ) != 0p;
     
    7676        } // post: elts = null
    7777
    78         forall( T & ) {
     78        forall( dtype T ) {
    7979                T * Curr( ColIter & ci ) with( ci ) {
    8080                        return (T *)curr;
Note: See TracChangeset for help on using the changeset viewer.