| 292 | |
| 293 | template<class Derived> |
| 294 | nodejs_basic_parser<Derived>:: |
| 295 | nodejs_basic_parser(nodejs_basic_parser&& other) |
| 296 | { |
| 297 | state_ = other.state_; |
| 298 | state_.data = this; |
| 299 | complete_ = other.complete_; |
| 300 | url_ = std::move(other.url_); |
| 301 | status_ = std::move(other.status_); |
| 302 | field_ = std::move(other.field_); |
| 303 | value_ = std::move(other.value_); |
| 304 | } |
| 305 | |
| 306 | template<class Derived> |
| 307 | auto |
nothing calls this directly
no test coverage detected