| 2663 | } |
| 2664 | |
| 2665 | void Value::CZString::swap(CZString &other) { |
| 2666 | std::swap(cstr_, other.cstr_); |
| 2667 | std::swap(index_, other.index_); |
| 2668 | } |
| 2669 | |
| 2670 | Value::CZString &Value::CZString::operator=(const CZString &other) { |
| 2671 | cstr_ = other.cstr_; |
no test coverage detected