| 20855 | detail::has_non_default_from_json<basic_json_t, ValueType>::value, |
| 20856 | int > = 0 > |
| 20857 | ValueType get_impl(detail::priority_tag<1> /*unused*/) const noexcept(noexcept( |
| 20858 | JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>()))) |
| 20859 | { |
| 20860 | return JSONSerializer<ValueType>::from_json(*this); |
| 20861 | } |
| 20862 | |
| 20863 | /*! |
| 20864 | @brief get special-case overload |
nothing calls this directly
no test coverage detected