| 3109 | detail::has_non_default_from_json<basic_json_t, ValueType>::value, |
| 3110 | int > = 0 > |
| 3111 | ValueType get_impl(detail::priority_tag<1> /*unused*/) const noexcept(noexcept( |
| 3112 | JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>()))) |
| 3113 | { |
| 3114 | return JSONSerializer<ValueType>::from_json(*this); |
| 3115 | } |
| 3116 | |
| 3117 | /*! |
| 3118 | @brief get special-case overload |
no test coverage detected