Changes in / [7bef8cf:d5c5586]
- File:
-
- 1 edited
-
libcfa/src/concurrency/channel.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/channel.hfa
r7bef8cf rd5c5586 326 326 // type used by select statement to capture a chan read as the selected operation 327 327 struct chan_read { 328 T & ret; 328 329 channel(T) & chan; 329 T & ret;330 330 }; 331 331 … … 399 399 // type used by select statement to capture a chan write as the selected operation 400 400 struct chan_write { 401 T elem; 401 402 channel(T) & chan; 402 T elem;403 403 }; 404 404
Note:
See TracChangeset
for help on using the changeset viewer.