Skip to content

Commit 2b7cbd4

Browse files
Remove extra std::move call (#2113)
1 parent 417f118 commit 2b7cbd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/oneapi/dpl/pstl/hetero/dpcpp/parallel_backend_sycl_radix_sort_one_wg.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ struct __subgroup_radix_sort
117117
{
118118
const uint16_t __idx = __wi * __block_size + __i;
119119
if (__idx < __n)
120-
new (&__values[__i]) _ValueT(::std::move(__src[__idx]));
120+
new (&__values[__i]) _ValueT(__src[__idx]);
121121
}
122122
}
123123

0 commit comments

Comments
 (0)