| 275 | } |
| 276 | |
| 277 | void Value::CZString::swap(CZString& other) { |
| 278 | std::swap(cstr_, other.cstr_); |
| 279 | std::swap(index_, other.index_); |
| 280 | } |
| 281 | |
| 282 | Value::CZString& Value::CZString::operator=(const CZString& other) { |
| 283 | cstr_ = other.cstr_; |
no test coverage detected