| 14436 | template < |
| 14437 | typename ValueType, detail::enable_if_t<detail::negation<detail::is_basic_node<ValueType>>::value, int> = 0> |
| 14438 | void get_value_impl(ValueType& v) const |
| 14439 | noexcept(noexcept(ConverterType<ValueType, void>::from_node(std::declval<const basic_node&>(), v))) { |
| 14440 | ConverterType<ValueType, void>::from_node(*this, v); |
| 14441 | } |
| 14442 | |
| 14443 | template <typename ValueType, detail::enable_if_t<detail::is_basic_node<ValueType>::value, int> = 0> |
| 14444 | void get_value_impl(ValueType& v) const { |