| 1638 | detail::has_non_default_from_json<basic_json_t, ValueType>::value, |
| 1639 | int > = 0 > |
| 1640 | ValueType get_impl(detail::priority_tag<1> /*unused*/) const noexcept(noexcept( |
| 1641 | JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>()))) |
| 1642 | { |
| 1643 | return JSONSerializer<ValueType>::from_json(*this); |
| 1644 | } |
| 1645 | |
| 1646 | /*! |
| 1647 | @brief get special-case overload |
no test coverage detected