| 2401 | } |
| 2402 | |
| 2403 | Value::CZString::~CZString() { |
| 2404 | if (cstr_ && storage_.policy_ == duplicate) |
| 2405 | releaseStringValue(const_cast<char*>(cstr_)); |
| 2406 | } |
| 2407 | |
| 2408 | void Value::CZString::swap(CZString& other) { |
| 2409 | std::swap(cstr_, other.cstr_); |
nothing calls this directly
no test coverage detected