diff options
Diffstat (limited to 'libcxx/test/algorithms/alg.modifying.operations/alg.copy')
4 files changed, 7 insertions, 7 deletions
diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp index d61a4614b57..41b5ab9a8a9 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp @@ -9,7 +9,7 @@ // <algorithm> -// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter> +// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter> // OutIter // copy(InIter first, InIter last, OutIter result); diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp index 345422075c1..761502bbe3c 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp @@ -9,8 +9,8 @@ // <algorithm> -// template<BidirectionalIterator InIter, BidirectionalIterator OutIter> -// requires OutputIterator<OutIter, InIter::reference> +// template<BidirectionalIterator InIter, BidirectionalIterator OutIter> +// requires OutputIterator<OutIter, InIter::reference> // OutIter // copy_backward(InIter first, InIter last, OutIter result); diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp index ec228f5f339..83c55e39e6b 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp @@ -9,9 +9,9 @@ // <algorithm> -// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter, -// Predicate<auto, InIter::value_type> Pred> -// requires CopyConstructible<Pred> +// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter, +// Predicate<auto, InIter::value_type> Pred> +// requires CopyConstructible<Pred> // OutIter // copy_if(InIter first, InIter last, OutIter result, Pred pred); diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp index 9d8a527afaf..5d95c3378dd 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp @@ -9,7 +9,7 @@ // <algorithm> -// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter> +// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter> // OutIter // copy_n(InIter first, InIter::difference_type n, OutIter result); |