| 5028 | { |
| 5029 | template<typename BasicJsonType, typename T> |
| 5030 | auto operator()(const BasicJsonType& j, T&& val) const |
| 5031 | noexcept(noexcept(from_json(j, std::forward<T>(val)))) |
| 5032 | -> decltype(from_json(j, std::forward<T>(val))) |
| 5033 | { |
| 5034 | return from_json(j, std::forward<T>(val)); |
| 5035 | } |
| 5036 | }; |
| 5037 | |
| 5038 | } // namespace detail |
nothing calls this directly
no test coverage detected