| 35 | |
| 36 | value::value() = default; |
| 37 | value::value(pn_data_t *d) { data_ = make_wrapper(d); } |
| 38 | value::value(const value& x) { *this = x; } |
| 39 | value::value(value&& x) { swap(*this, x); } |
| 40 | value& value::operator=(value&& x) { swap(*this, x); return *this; } |
nothing calls this directly
no test coverage detected