[libcxx-commits] [libcxx] d32edcb - [libc++][NFC] Fix broken formatting in comment
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Oct 4 13:38:51 PDT 2023
Author: Louis Dionne
Date: 2023-10-04T16:38:30-04:00
New Revision: d32edcb86dfd18771fd05b66ad89a3377dc8c32b
URL: https://github.com/llvm/llvm-project/commit/d32edcb86dfd18771fd05b66ad89a3377dc8c32b
DIFF: https://github.com/llvm/llvm-project/commit/d32edcb86dfd18771fd05b66ad89a3377dc8c32b.diff
LOG: [libc++][NFC] Fix broken formatting in comment
Added:
Modified:
libcxx/include/__algorithm/pstl_backend.h
Removed:
################################################################################
diff --git a/libcxx/include/__algorithm/pstl_backend.h b/libcxx/include/__algorithm/pstl_backend.h
index 2aa157032fe2a59..3d9459ef5fa23a4 100644
--- a/libcxx/include/__algorithm/pstl_backend.h
+++ b/libcxx/include/__algorithm/pstl_backend.h
@@ -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,
More information about the libcxx-commits
mailing list