| 210 | } |
| 211 | |
| 212 | bool error() const noexcept { |
| 213 | call_status cs = status(); |
| 214 | return cs != call_status::ok && cs != call_status::yielded; |
| 215 | } |
| 216 | |
| 217 | bool runnable() const noexcept { |
| 218 | return base_t::valid() && (status() == call_status::yielded); |
nothing calls this directly
no outgoing calls
no test coverage detected