| 2713 | } |
| 2714 | |
| 2715 | void Value::CZString::swap(CZString& other) { |
| 2716 | std::swap(cstr_, other.cstr_); |
| 2717 | std::swap(index_, other.index_); |
| 2718 | } |
| 2719 | |
| 2720 | Value::CZString& Value::CZString::operator=(const CZString& other) { |
| 2721 | cstr_ = other.cstr_; |
no test coverage detected