| 54 | struct __joiner : STDEXEC::__immovable |
| 55 | { |
| 56 | constexpr void join() const noexcept |
| 57 | { |
| 58 | if (__op_) |
| 59 | { |
| 60 | __op_(__ptr_); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | void (*__op_)(void*) noexcept = nullptr; |
| 65 | void* __ptr_ = nullptr; |
no outgoing calls
no test coverage detected