| 268 | { |
| 269 | public: |
| 270 | coroutine_ref(coroutine& c) : value_(c.value_), modified_(false) {} |
| 271 | coroutine_ref(coroutine* c) : value_(c->value_), modified_(false) {} |
| 272 | coroutine_ref(const coroutine_ref&) = default; |
| 273 | ~coroutine_ref() { if (!modified_) value_ = -1; } |
nothing calls this directly
no outgoing calls
no test coverage detected