From 60f61673581bedb92cc14bd5fb3f1af0edf4b384 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 19 Aug 2025 10:04:23 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/src/ArrowTableSlicingCache.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/ArrowTableSlicingCache.cxx b/Framework/Core/src/ArrowTableSlicingCache.cxx index 6c2b258faa1ab..1e5966f730032 100644 --- a/Framework/Core/src/ArrowTableSlicingCache.cxx +++ b/Framework/Core/src/ArrowTableSlicingCache.cxx @@ -102,7 +102,7 @@ arrow::Status ArrowTableSlicingCache::updateCacheEntry(int pos, std::shared_ptr< auto column = table->GetColumnByName(k); // starting from the end, find the first positive value, in a sorted column it is the largest index - for (auto iChunk = column->num_chunks() - 1; iChunk >=0; --iChunk) { + for (auto iChunk = column->num_chunks() - 1; iChunk >= 0; --iChunk) { auto chunk = static_cast>(column->chunk(iChunk)->data()); for (auto iElement = chunk.length() - 1; iElement >= 0; --iElement) { auto value = chunk.Value(iElement);