Changeset 0c674e8
- Timestamp:
- May 30, 2018, 3:20:31 PM (6 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:
- 8cc7dd1
- Parents:
- c24ef9d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/bits/containers.h
rc24ef9d r0c674e8 186 186 187 187 forall(dtype T | is_node(T)) 188 static inline bool ?!=?( __queue(T) & this, zero_t zero ) with( this ){189 return head != 0;188 static inline bool ?!=?( __queue(T) & this, zero_t zero ) { 189 return this.head != 0; 190 190 } 191 191 #endif … … 266 266 __get( node ).prev = NULL; 267 267 } 268 269 forall(dtype T | sized(T)) 270 static inline bool ?!=?( __dllist(T) & this, zero_t zero ) { 271 return this.head != 0; 272 } 268 273 #undef next 269 274 #undef prev
Note: See TracChangeset
for help on using the changeset viewer.