Skip to content

Commit

Permalink
correct sign
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin authored and ktf committed Nov 8, 2023
1 parent b5e283e commit 6eeb7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -2752,7 +2752,7 @@ class FilteredBase : public T
this->copyIndexBindings(fresult);
return fresult;
}
auto start = offset;
auto start = static_cast<uint64_t>(offset);
auto end = start + slice->num_rows();
auto start_iterator = std::lower_bound(mSelectedRows.begin(), mSelectedRows.end(), start);
auto stop_iterator = std::lower_bound(start_iterator, mSelectedRows.end(), end);
Expand Down

0 comments on commit 6eeb7fb

Please sign in to comment.