| 244 | } |
| 245 | |
| 246 | inline void Node::AssignData(const Node& rhs) { |
| 247 | EnsureNodeExists(); |
| 248 | rhs.EnsureNodeExists(); |
| 249 | |
| 250 | m_pNode->set_data(*rhs.m_pNode); |
| 251 | m_pMemory->merge(*rhs.m_pMemory); |
| 252 | } |
| 253 | |
| 254 | inline void Node::AssignNode(const Node& rhs) { |
| 255 | if (!m_isValid) |
nothing calls this directly
no test coverage detected