| 211 | |
| 212 | template <typename T> |
| 213 | inline void Node::Assign(const T& rhs) { |
| 214 | if (!m_isValid) |
| 215 | throw InvalidNode(); |
| 216 | AssignData(convert<T>::encode(rhs)); |
| 217 | } |
| 218 | |
| 219 | template <> |
| 220 | inline void Node::Assign(const std::string& rhs) { |
nothing calls this directly
no test coverage detected