Skip to content

Commit

Permalink
include/oneapi/dpl/pstl/algorithm_impl.h - remove extra changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Kopienko committed Mar 12, 2024
1 parent e8879ac commit f6ec2e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/oneapi/dpl/pstl/algorithm_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1732,8 +1732,8 @@ __brick_reverse_copy(_RandomAccessIterator1 __first, _RandomAccessIterator1 __la
typedef typename ::std::iterator_traits<_RandomAccessIterator1>::reference _ReferenceType1;
typedef typename ::std::iterator_traits<_RandomAccessIterator2>::reference _ReferenceType2;

return __unseq_backend::__simd_walk_2(::std::reverse_iterator<_RandomAccessIterator1>(__last), __last - __first,
__d_first, [](_ReferenceType1 __x, _ReferenceType2 __y) { __y = __x; });
return __unseq_backend::__simd_walk_2(::std::reverse_iterator<_RandomAccessIterator1>(__last), __last - __first,
__d_first, [](_ReferenceType1 __x, _ReferenceType2 __y) { __y = __x; });
}

template <class _ExecutionPolicy, class _BidirectionalIterator, class _OutputIterator, class _IsVector>
Expand Down

0 comments on commit f6ec2e4

Please sign in to comment.