From 75e79d3765d0b48869a6de2371dd23c4ba126c50 Mon Sep 17 00:00:00 2001 From: Dan Hoeflinger Date: Thu, 30 May 2024 15:53:38 -0400 Subject: [PATCH] fix comment --- clang/runtime/dpct-rt/include/dpct/dpl_extras/algorithm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/runtime/dpct-rt/include/dpct/dpl_extras/algorithm.h b/clang/runtime/dpct-rt/include/dpct/dpl_extras/algorithm.h index dfd09eedeadc..4c520edc1e14 100644 --- a/clang/runtime/dpct-rt/include/dpct/dpl_extras/algorithm.h +++ b/clang/runtime/dpct-rt/include/dpct/dpl_extras/algorithm.h @@ -550,7 +550,7 @@ void stable_sort(Policy &&policy, Iter1 keys_first, Iter1 keys_last, std::is_same::iterator_category, std::random_access_iterator_tag>::value, "Iterators passed to algorithms must be random-access iterators."); - //oneDPL::sort_by_key is explicitly stable + //oneDPL's sort_by_key is explicitly stable oneapi::dpl::sort_by_key(std::forward(policy), keys_first, keys_last, values_first, comp); }