diff --git a/Framework/Core/src/ArrowTableSlicingCache.cxx b/Framework/Core/src/ArrowTableSlicingCache.cxx index 91e47e60fb9d2..1baa2fed6db05 100644 --- a/Framework/Core/src/ArrowTableSlicingCache.cxx +++ b/Framework/Core/src/ArrowTableSlicingCache.cxx @@ -240,13 +240,13 @@ SliceInfoPtr ArrowTableSlicingCache::getCacheForPos(int pos) const if (values[pos] == nullptr && counts[pos] == nullptr) { return { nullptr, // - nullptr // + nullptr // }; } return { - &(offsets[pos]), // - &(sizes[pos]) // + &(offsets[pos]), // + &(sizes[pos]) // }; } diff --git a/Framework/Core/test/test_GroupSlicer.cxx b/Framework/Core/test/test_GroupSlicer.cxx index 9e64dc6738ed0..7f2d301a6203a 100644 --- a/Framework/Core/test/test_GroupSlicer.cxx +++ b/Framework/Core/test/test_GroupSlicer.cxx @@ -526,7 +526,7 @@ TEST_CASE("GroupSlicerMismatchedUnsortedFilteredGroupsWithSelfIndex") if (filler[0] > filler[1]) { std::swap(filler[0], filler[1]); } - partsWriter(0, std::floor( i / 10.), i, filler); + partsWriter(0, std::floor(i / 10.), i, filler); } auto partsTable = builderP.finalize();