| 2757 | } |
| 2758 | |
| 2759 | void Value::CZString::swap(CZString& other) { |
| 2760 | std::swap(cstr_, other.cstr_); |
| 2761 | std::swap(index_, other.index_); |
| 2762 | } |
| 2763 | |
| 2764 | Value::CZString& Value::CZString::operator=(const CZString& other) { |
| 2765 | cstr_ = other.cstr_; |
no test coverage detected