This is an automated email from the ASF dual-hosted git repository. bkietz pushed a commit to branch feature/format-string-view in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 2f619ba07daf5ab8ab18e20bf38617f51d1291bb Author: Tobias Zagorni <[email protected]> AuthorDate: Tue Oct 18 17:25:06 2022 +0200 fix formatting --- cpp/src/arrow/type_traits.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/arrow/type_traits.h b/cpp/src/arrow/type_traits.h index dcd7c36ba2..7ba04d35e2 100644 --- a/cpp/src/arrow/type_traits.h +++ b/cpp/src/arrow/type_traits.h @@ -829,8 +829,8 @@ using enable_if_has_c_type = enable_if_t<has_c_type<T>::value, R>; template <typename T> using has_string_view = std::integral_constant<bool, std::is_same<BinaryType, T>::value || - std::is_same<BinaryViewType, T>::value || - std::is_same<LargeBinaryType, T>::value || + std::is_same<BinaryViewType, T>::value || + std::is_same<LargeBinaryType, T>::value || std::is_same<StringType, T>::value || std::is_same<StringViewType, T>::value || std::is_same<LargeStringType, T>::value ||
