Skip to content

Commit

Permalink
[libc++][NFC] Fix broken formatting in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Oct 4, 2023
1 parent 0fb1ad5 commit d32edcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libcxx/include/__algorithm/pstl_backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ A PSTL parallel backend is a tag type to which the following functions are assoc
_Comp __comp);
template <class _ExecutionPolicy, class _InIterator, class _OutIterator, class _UnaryOperation>
_OutIterator __pstl_transform(_Backend, _InIterator __first, _InIterator __last, _OutIterator __result, _UnaryOperation __op);
_OutIterator __pstl_transform(_Backend,
_InIterator __first,
_InIterator __last,
_OutIterator __result,
_UnaryOperation __op);
template <class _ExecutionPolicy, class _InIterator1, class _InIterator2, class _OutIterator, class _BinaryOperation>
_OutIterator __pstl_transform(_Backend,
Expand Down

0 comments on commit d32edcb

Please sign in to comment.