| 2681 | #endif |
| 2682 | |
| 2683 | Value::CZString::~CZString() { |
| 2684 | if (cstr_ && storage_.policy_ == duplicate) |
| 2685 | releaseStringValue(const_cast<char*>(cstr_)); |
| 2686 | } |
| 2687 | |
| 2688 | void Value::CZString::swap(CZString& other) { |
| 2689 | std::swap(cstr_, other.cstr_); |
nothing calls this directly
no test coverage detected