Changeset a1a17a74 for src/libcfa/bits
- Timestamp:
- May 22, 2018, 4:39:48 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 13073be, 2c88368
- Parents:
- 639991a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/bits/containers.h
r639991a ra1a17a74 224 224 forall(dtype T | sized(T)) 225 225 static inline void push_front( __dllist(T) & this, T & node ) with( this ) { 226 verify(__get); 226 227 if ( head ) { 227 228 __get( node ).next = head; … … 246 247 forall(dtype T | sized(T)) 247 248 static inline void remove( __dllist(T) & this, T & node ) with( this ) { 249 verify(__get); 248 250 if ( &node == head ) { 249 251 if ( __get( *head ).next == head ) {
Note: See TracChangeset
for help on using the changeset viewer.