Skip to content

Commit ae4c1b9

Browse files
committed
Apply clang-format indentation per CI requirement
1 parent b508636 commit ae4c1b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/src/arrow/sparse_tensor.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ std::string SparseCSFIndex::ToString() const { return std::string("SparseCSFInde
407407
bool SparseCSFIndex::Equals(const SparseCSFIndex& other) const {
408408
auto eq = [](const auto& a, const auto& b) { return a->Equals(*b); };
409409
return axis_order() == other.axis_order() &&
410-
std::ranges::equal(indices(), other.indices(), eq) &&
411-
std::ranges::equal(indptr(), other.indptr(), eq);
410+
std::ranges::equal(indices(), other.indices(), eq) &&
411+
std::ranges::equal(indptr(), other.indptr(), eq);
412412
}
413413

414414
// ----------------------------------------------------------------------

0 commit comments

Comments
 (0)