| 12191 | |
| 12192 | template <typename... Args> |
| 12193 | static void mapping(BasicNodeType& n, Args&&... args) { |
| 12194 | destroy(n); |
| 12195 | n.m_attrs |= node_attr_bits::map_bit; |
| 12196 | n.m_value.p_map = create_object<typename BasicNodeType::mapping_type>(std::forward<Args>(args)...); |
| 12197 | } |
| 12198 | |
| 12199 | static void null_scalar(BasicNodeType& n, std::nullptr_t) { |
| 12200 | destroy(n); |
no test coverage detected