| 1673 | } |
| 1674 | |
| 1675 | void Value::CZString::swap(CZString& other) { |
| 1676 | std::swap(cstr_, other.cstr_); |
| 1677 | std::swap(index_, other.index_); |
| 1678 | } |
| 1679 | |
| 1680 | Value::CZString& Value::CZString::operator=(CZString other) { |
| 1681 | swap(other); |
no test coverage detected