| 2750 | } |
| 2751 | |
| 2752 | void Value::CZString::swap(CZString& other) { |
| 2753 | std::swap(cstr_, other.cstr_); |
| 2754 | std::swap(index_, other.index_); |
| 2755 | } |
| 2756 | |
| 2757 | Value::CZString& Value::CZString::operator=(const CZString& other) { |
| 2758 | cstr_ = other.cstr_; |
no test coverage detected