| 1677 | : other.index_) {} |
| 1678 | |
| 1679 | Value::CZString::~CZString() { |
| 1680 | if (cstr_ && index_ == duplicate) |
| 1681 | releaseStringValue(const_cast<char *>(cstr_)); |
| 1682 | } |
| 1683 | |
| 1684 | void Value::CZString::swap(CZString &other) { |
| 1685 | std::swap(cstr_, other.cstr_); |
nothing calls this directly
no test coverage detected