Skip to content

Commit

Permalink
Fixed compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Jan 23, 2025
1 parent 70da0b6 commit add7f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/align/align.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ TextBuffer* pipeline_short(BlockId query, Search::Hit* begin, Search::Hit* end,

static vector<int64_t> make_partition(Search::Hit* begin, Search::Hit* end) {
vector<int64_t> partition;
partition.reserve(div_up(end - begin, config.min_task_trace_pts) + 1);
partition.reserve(div_up(end - begin, (ptrdiff_t)config.min_task_trace_pts) + 1);
Search::Hit* p = begin;
partition.push_back(0);
const BlockId c = align_mode.query_contexts;
Expand Down

0 comments on commit add7f3b

Please # to comment.