Changeset ded6c2a6


Ignore:
Timestamp:
Jun 1, 2023, 9:52:47 PM (16 months ago)
Author:
caparson <caparson@…>
Branches:
ast-experimental, master
Children:
b5e3a80, bebfc2e
Parents:
251ce80
Message:

fixed build failure

File:
1 edited

Legend:

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

    r251ce80 rded6c2a6  
    5151vtable(channel_closed) channel_closed_vt;
    5252
    53 static inline bool is_insert( channel_closed & e ) { return elem != 0p; }
    54 static inline bool is_remove( channel_closed & e ) { return elem == 0p; }
     53static inline bool is_insert( channel_closed & e ) { return e.elem != 0p; }
     54static inline bool is_remove( channel_closed & e ) { return e.elem == 0p; }
    5555
    5656// #define CHAN_STATS // define this to get channel stats printed in dtor
Note: See TracChangeset for help on using the changeset viewer.