Skip to content

Commit 28e0239

Browse files
committed
Please consider the following formatting changes
1 parent 0315fa1 commit 28e0239

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Framework/Core/src/ArrowTableSlicingCache.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,13 @@ SliceInfoPtr ArrowTableSlicingCache::getCacheForPos(int pos) const
240240
if (values[pos] == nullptr && counts[pos] == nullptr) {
241241
return {
242242
nullptr, //
243-
nullptr //
243+
nullptr //
244244
};
245245
}
246246

247247
return {
248-
&(offsets[pos]), //
249-
&(sizes[pos]) //
248+
&(offsets[pos]), //
249+
&(sizes[pos]) //
250250
};
251251
}
252252

Framework/Core/test/test_GroupSlicer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ TEST_CASE("GroupSlicerMismatchedUnsortedFilteredGroupsWithSelfIndex")
526526
if (filler[0] > filler[1]) {
527527
std::swap(filler[0], filler[1]);
528528
}
529-
partsWriter(0, std::floor( i / 10.), i, filler);
529+
partsWriter(0, std::floor(i / 10.), i, filler);
530530
}
531531
auto partsTable = builderP.finalize();
532532

0 commit comments

Comments
 (0)