Skip to content

Commit

Permalink
Fix GCC 10 warning on limited range of data type
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Feb 12, 2024
1 parent 6c1b937 commit 47bdee6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ namespace adiar::internal
void init_buckets()
{
// Initially skip the number of levels
for (ptr_uint64::label_type idx = 0; _level_merger.can_pull() && idx < LevelSkip; idx++) {
for (size_t idx = 0; _level_merger.can_pull() && idx < LevelSkip; idx++) {
_level_merger.pull();
}

Expand Down

0 comments on commit 47bdee6

Please sign in to comment.