| 1682 | } |
| 1683 | |
| 1684 | void Value::CZString::swap(CZString &other) { |
| 1685 | std::swap(cstr_, other.cstr_); |
| 1686 | std::swap(index_, other.index_); |
| 1687 | } |
| 1688 | |
| 1689 | Value::CZString &Value::CZString::operator=(const CZString &other) { |
| 1690 | CZString temp(other); |
nothing calls this directly
no outgoing calls
no test coverage detected