Changes in libcfa/src/bits/containers.hfa [3623f9d:ffe2fad]
- File:
-
- 1 edited
-
libcfa/src/bits/containers.hfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/containers.hfa
r3623f9d rffe2fad 78 78 //----------------------------------------------------------------------------- 79 79 #ifdef __cforall 80 forall(dtype TYPE )80 forall(dtype TYPE | is_node(TYPE)) 81 81 #define T TYPE 82 82 #else … … 95 95 96 96 #ifdef __cforall 97 forall(dtype T )97 forall(dtype T | is_node(T)) 98 98 static inline void ?{}( __stack(T) & this ) { 99 99 (this.top){ NULL }; … … 122 122 //----------------------------------------------------------------------------- 123 123 #ifdef __cforall 124 forall(dtype TYPE )124 forall(dtype TYPE | is_node(TYPE)) 125 125 #define T TYPE 126 126 #else … … 141 141 #ifdef __cforall 142 142 143 forall(dtype T )143 forall(dtype T | is_node(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.