| 222 | |
| 223 | template <typename T> |
| 224 | inline void Node::Assign(const T& rhs) { |
| 225 | if (!m_isValid) |
| 226 | throw InvalidNode(m_invalidKey); |
| 227 | AssignData(convert<T>::encode(rhs)); |
| 228 | } |
| 229 | |
| 230 | template <> |
| 231 | inline void Node::Assign(const std::string& rhs) { |
nothing calls this directly
no test coverage detected