Skip to content

Commit 53d086a

Browse files
authored
DPL Analysis: signed comparison fix (#13316)
1 parent b7abf54 commit 53d086a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Framework/Core/include/Framework

Framework/Core/include/Framework/ASoA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,7 @@ auto doSliceBy(T const* table, o2::framework::PresliceBase<C, OPT, SORTED> const
12911291
template <typename T>
12921292
auto prepareFilteredSlice(T const* table, std::shared_ptr<arrow::Table> slice, uint64_t offset)
12931293
{
1294-
if (offset >= table->tableSize()) {
1294+
if (offset >= static_cast<uint64_t>(table->tableSize())) {
12951295
if constexpr (soa::is_soa_filtered_v<T>) {
12961296
Filtered<typename T::base_t> fresult{{{slice}}, SelectionVector{}, 0};
12971297
table->copyIndexBindings(fresult);

0 commit comments

Comments
 (0)