Skip to content

Commit d32edcb

Browse files
committed
[libc++][NFC] Fix broken formatting in comment
1 parent 0fb1ad5 commit d32edcb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

libcxx/include/__algorithm/pstl_backend.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ A PSTL parallel backend is a tag type to which the following functions are assoc
4949
_Comp __comp);
5050
5151
template <class _ExecutionPolicy, class _InIterator, class _OutIterator, class _UnaryOperation>
52-
_OutIterator __pstl_transform(_Backend, _InIterator __first, _InIterator __last, _OutIterator __result, _UnaryOperation __op);
52+
_OutIterator __pstl_transform(_Backend,
53+
_InIterator __first,
54+
_InIterator __last,
55+
_OutIterator __result,
56+
_UnaryOperation __op);
5357
5458
template <class _ExecutionPolicy, class _InIterator1, class _InIterator2, class _OutIterator, class _BinaryOperation>
5559
_OutIterator __pstl_transform(_Backend,

0 commit comments

Comments
 (0)