| 61 | enable_if_t< // issue #1897 |
| 62 | !is_integral<typename first_or_void<Args...>::type>::value, int> = 0> |
| 63 | DeserializationError deserialize(TDestination&& dst, TStream&& input, |
| 64 | Args... args) { |
| 65 | return doDeserialize<TDeserializer>( |
| 66 | dst, makeReader(detail::forward<TStream>(input)), |
| 67 | makeDeserializationOptions(args...)); |
| 68 | } |
| 69 | |
| 70 | template <template <typename> class TDeserializer, typename TDestination, |
| 71 | typename TChar, typename Size, typename... Args, |
nothing calls this directly
no test coverage detected