Ignore:
File:
1 edited

Legend:

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

    r0c674e8 r8ebbfc4  
    186186
    187187        forall(dtype T | is_node(T))
    188         static inline bool ?!=?( __queue(T) & this, zero_t zero ) {
    189                 return this.head != 0;
     188        static inline bool ?!=?( __queue(T) & this, zero_t zero ) with( this ) {
     189                return head != 0;
    190190        }
    191191#endif
     
    266266                __get( node ).prev = NULL;
    267267        }
    268 
    269         forall(dtype T | sized(T))
    270         static inline bool ?!=?( __dllist(T) & this, zero_t zero ) {
    271                 return this.head != 0;
    272         }
    273268        #undef next
    274269        #undef prev
Note: See TracChangeset for help on using the changeset viewer.