Skip to content

Commit

Permalink
Update WFAlgoTaskFactory.inl
Browse files Browse the repository at this point in the history
  • Loading branch information
Barenboim authored Mar 8, 2024
1 parent fa5041f commit f5b2f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/factory/WFAlgoTaskFactory.inl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void __WFMergeTask<T>::execute()
else
{
output->last = std::merge(input->first1, input->last1,
input->first2, input->first2,
input->first2, input->last2,
input->d_first);
}

Expand Down Expand Up @@ -252,7 +252,7 @@ void __WFMergeTaskCmp<T, CMP>::execute()
else
{
output->last = std::merge(input->first1, input->last1,
input->first2, input->first2,
input->first2, input->last2,
input->d_first,
std::move(this->compare));
}
Expand Down

0 comments on commit f5b2f93

Please sign in to comment.