| 1668 | : other.index_) {} |
| 1669 | |
| 1670 | Value::CZString::~CZString() { |
| 1671 | if (cstr_ && index_ == duplicate) |
| 1672 | releaseStringValue(const_cast<char*>(cstr_)); |
| 1673 | } |
| 1674 | |
| 1675 | void Value::CZString::swap(CZString& other) { |
| 1676 | std::swap(cstr_, other.cstr_); |
nothing calls this directly
no test coverage detected