| 7314 | }; |
| 7315 | |
| 7316 | struct table_init_pair |
| 7317 | { |
| 7318 | mutable toml::key key; |
| 7319 | mutable node_ptr value; |
| 7320 | |
| 7321 | template <typename K, typename V> |
| 7322 | TOML_NODISCARD_CTOR |
| 7323 | table_init_pair(K&& k, V&& v, value_flags flags = preserve_source_value_flags) // |
| 7324 | : key{ static_cast<K&&>(k) }, |
| 7325 | value{ make_node(static_cast<V&&>(v), flags) } |
| 7326 | {} |
| 7327 | }; |
| 7328 | } |
| 7329 | TOML_IMPL_NAMESPACE_END; |
| 7330 | |
| 7331 | TOML_NAMESPACE_START |
nothing calls this directly
no test coverage detected