| 17 | event::event(af_event e) : e_(e) {} |
| 18 | |
| 19 | event::~event() { |
| 20 | // No dtor throw |
| 21 | if (e_) { af_delete_event(e_); } |
| 22 | } |
| 23 | |
| 24 | // NOLINTNEXTLINE(performance-noexcept-move-constructor) we can't change the API |
| 25 | event::event(event&& other) : e_(other.e_) { other.e_ = 0; } |
nothing calls this directly
no test coverage detected