| 295 | |
| 296 | template <typename TConverter, typename T> |
| 297 | bool doSet(const T& value) const { |
| 298 | return doSet<TConverter>( |
| 299 | value, is_same<typename function_traits< |
| 300 | decltype(&TConverter::toJson)>::return_type, |
| 301 | bool>{}); |
| 302 | } |
| 303 | |
| 304 | template <typename TConverter, typename T> |
| 305 | bool doSet(const T& value, false_type) const; |
nothing calls this directly
no outgoing calls
no test coverage detected