| 1572 | } |
| 1573 | |
| 1574 | Value::Comments::Comments(const Comments& that) |
| 1575 | : ptr_ { cloneUnique(that.ptr_) } { |
| 1576 | } |
| 1577 | |
| 1578 | Value::Comments::Comments(Comments&& that) noexcept |
| 1579 | : ptr_ { std::move(that.ptr_) } { |
nothing calls this directly
no test coverage detected