Changes in / [d5c5586:7bef8cf]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/channel.hfa

    rd5c5586 r7bef8cf  
    326326// type used by select statement to capture a chan read as the selected operation
    327327struct chan_read {
     328    channel(T) & chan;
    328329    T & ret;
    329     channel(T) & chan;
    330330};
    331331
     
    399399// type used by select statement to capture a chan write as the selected operation
    400400struct chan_write {
     401    channel(T) & chan;
    401402    T elem;
    402     channel(T) & chan;
    403403};
    404404
Note: See TracChangeset for help on using the changeset viewer.