Skip to content

Commit a4993bb

Browse files
committed
[alg.copy], [alg.move] Rename ExecutionPolicy parameters
This makes them consistent with all other parallel algorithms.
1 parent 85c8d46 commit a4993bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: source/algorithms.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -5062,7 +5062,7 @@
50625062
\indexlibraryglobal{copy}%
50635063
\begin{itemdecl}
50645064
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
5065-
ForwardIterator2 copy(ExecutionPolicy&& policy,
5065+
ForwardIterator2 copy(ExecutionPolicy&& exec,
50665066
ForwardIterator1 first, ForwardIterator1 last,
50675067
ForwardIterator2 result);
50685068
\end{itemdecl}
@@ -5325,7 +5325,7 @@
53255325
\indexlibrary{\idxcode{move}!algorithm}%
53265326
\begin{itemdecl}
53275327
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
5328-
ForwardIterator2 move(ExecutionPolicy&& policy,
5328+
ForwardIterator2 move(ExecutionPolicy&& exec,
53295329
ForwardIterator1 first, ForwardIterator1 last,
53305330
ForwardIterator2 result);
53315331
\end{itemdecl}

0 commit comments

Comments
 (0)