Changeset 28564382 for libcfa/src/bits/containers.hfa
- Timestamp:
- Jun 24, 2019, 6:05:10 PM (4 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 08065aa4
- Parents:
- 64dc36e (diff), 3e2f5e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/containers.hfa
r64dc36e r28564382 78 78 //----------------------------------------------------------------------------- 79 79 #ifdef __cforall 80 forall(dtype TYPE | is_node(TYPE))80 forall(dtype TYPE) 81 81 #define T TYPE 82 82 #else … … 95 95 96 96 #ifdef __cforall 97 forall(dtype T | is_node(T))97 forall(dtype T) 98 98 static inline void ?{}( __stack(T) & this ) { 99 99 (this.top){ NULL }; … … 122 122 //----------------------------------------------------------------------------- 123 123 #ifdef __cforall 124 forall(dtype TYPE | is_node(TYPE))124 forall(dtype TYPE) 125 125 #define T TYPE 126 126 #else … … 141 141 #ifdef __cforall 142 142 143 forall(dtype T | is_node(T))143 forall(dtype T) 144 144 static inline void ?{}( __queue(T) & this ) with( this ) { 145 145 head{ NULL };
Note: See TracChangeset
for help on using the changeset viewer.