| 195 | */ |
| 196 | template <typename OtherExecutor> |
| 197 | basic_yield_context(const basic_yield_context<OtherExecutor>& other, |
| 198 | constraint_t< |
| 199 | is_convertible<OtherExecutor, Executor>::value |
| 200 | > = 0) |
| 201 | : spawned_thread_(other.spawned_thread_), |
| 202 | executor_(other.executor_), |
| 203 | ec_(other.ec_) |
| 204 | { |
| 205 | } |
| 206 | |
| 207 | /// Get the executor associated with the yield context. |
| 208 | executor_type get_executor() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected