Hi Pavel,

Thanks for the review!

On 07/08/2020 13:49, Pavel Rappo wrote:
May I suggest we use this?

     ChannelState s;
     assert (s = writeState.get()) == CLOSED : s;

Or better still,

     ChannelState s = writeState.get();
     assert s == CLOSED : s;


I'll do that before pushing.

best regards,

-- daniel

Reply via email to