Skip to content

Commit 70fedaf

Browse files
committed
[libc++][NFC] Fix slightly incorrect comment in PSTL documentation
1 parent f2b79ed commit 70fedaf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

libcxx/include/__algorithm/pstl_backend.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ A PSTL parallel backend is a tag type to which the following functions are assoc
4141
class _ForwardIterator2,
4242
class _ForwardOutIterator,
4343
class _Comp>
44-
_ForwardOutIterator __pstl_merge(_Backend,
45-
_ForwardIterator1 __first1,
46-
_ForwardIterator1 __last1,
47-
_ForwardIterator2 __first2,
48-
_ForwardIterator2 __last2,
49-
_ForwardOutIterator __result,
50-
_Comp __comp);
44+
optional<_ForwardOutIterator> __pstl_merge(_Backend,
45+
_ForwardIterator1 __first1,
46+
_ForwardIterator1 __last1,
47+
_ForwardIterator2 __first2,
48+
_ForwardIterator2 __last2,
49+
_ForwardOutIterator __result,
50+
_Comp __comp);
5151
5252
template <class _ExecutionPolicy, class _InIterator, class _OutIterator, class _UnaryOperation>
5353
optional<_OutIterator>

0 commit comments

Comments
 (0)