Skip to content

Commit

Permalink
fixing unused param error
Browse files Browse the repository at this point in the history
Signed-off-by: Hari Hara Naveen S <[email protected]>
  • Loading branch information
Johan511 committed Sep 14, 2023
1 parent 59e4198 commit bad24e7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions libs/core/algorithms/include/hpx/parallel/algorithms/sort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,11 +470,9 @@ namespace hpx {
#ifdef HPX_HAVE_SIMD_SORT
template <typename RandomIt, typename Comp = hpx::parallel::detail::less,
HPX_CONCEPT_REQUIRES_(
hpx::traits::is_random_access_iterator_v<RandomIt>&&
hpx::is_invocable_v<Comp, hpx::traits::iter_value_t<RandomIt>,
hpx::traits::iter_value_t<RandomIt>>)>
hpx::traits::is_random_access_iterator_v<RandomIt>)>
void tag_invoke(hpx::sort_t, hpx::execution::unsequenced_policy,
RandomIt first, RandomIt last, Comp comp = Comp())
RandomIt first, RandomIt last, Comp)
{
return hpx::parallel::util::simd_quicksort(
std::addressof(*first), std::distance(first, last));
Expand Down

0 comments on commit bad24e7

Please sign in to comment.