From ec4081904a74f5f2bbd2980aec3f96dc60d52efb Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Sun, 1 Dec 2024 00:23:15 +0000 Subject: [PATCH] Lint C++ --- cpp/src/arrow/array/util.cc | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/cpp/src/arrow/array/util.cc b/cpp/src/arrow/array/util.cc index e3423be44f4dd..c23deaede7bcc 100644 --- a/cpp/src/arrow/array/util.cc +++ b/cpp/src/arrow/array/util.cc @@ -951,29 +951,29 @@ Result> MakeMaskArray(const std::shared_ptr& indic switch (indices->type_id()) { case Type::INT8: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::UINT8: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::INT16: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::UINT16: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::INT32: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::UINT32: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::INT64: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); case Type::UINT64: - return MakeMaskArrayImpl( - checked_pointer_cast>(indices), length, pool); + return MakeMaskArrayImpl(checked_pointer_cast>(indices), + length, pool); default: return Status::Invalid("Indices array must be of integer type"); }