| 221 | |
| 222 | template <typename From, typename To, typename = void> |
| 223 | struct cni_convertible { |
| 224 | static constexpr bool value = false; |
| 225 | }; |
| 226 | |
| 227 | template <typename From, typename To> |
| 228 | struct cni_convertible<From, To, void_t<decltype(type_convertor<From, To>::convert(std::declval<From>()))>> { |
nothing calls this directly
no outgoing calls
no test coverage detected