Remove unnecessary final and apply clang-format

This commit is contained in:
Victor Zverovich
2024-01-07 13:08:17 -08:00
parent 7d73ef85f7
commit c1d9e88402
3 changed files with 14 additions and 17 deletions

View File

@@ -360,8 +360,7 @@ struct formatter<Tuple, Char,
template <typename T, typename Char> struct is_range {
static constexpr const bool value =
detail::is_range_<T>::value &&
!detail::has_to_string_view<T>::value &&
detail::is_range_<T>::value && !detail::has_to_string_view<T>::value &&
!std::is_convertible<T, std::basic_string<Char>>::value &&
!std::is_convertible<T, detail::std_string_view<Char>>::value;
};