| 3003 | } |
| 3004 | |
| 3005 | void Value::copyPayload(const Value& other) { |
| 3006 | type_ = other.type_; |
| 3007 | value_ = other.value_; |
| 3008 | allocated_ = other.allocated_; |
| 3009 | } |
| 3010 | |
| 3011 | void Value::swap(Value& other) { |
| 3012 | swapPayload(other); |
nothing calls this directly
no outgoing calls
no test coverage detected