[libcxx-commits] [PATCH] D123139: [libc++] Use cpp20_output_iterator in tests.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Apr 6 08:48:34 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3fb3770983b8: [libc++] Use cpp20_output_iterator in tests. (authored by Mordante).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123139/new/
https://reviews.llvm.org/D123139
Files:
libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/ranges.transform.pass.cpp
Index: libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/ranges.transform.pass.cpp
===================================================================
--- libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/ranges.transform.pass.cpp
+++ libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/ranges.transform.pass.cpp
@@ -571,6 +571,7 @@
int main(int, char**) {
test_iterators_in1_in2<cpp17_output_iterator<int*>>();
+ test_iterators_in1_in2<cpp20_output_iterator<int*>>();
test_iterators_in1_in2<forward_iterator<int*>>();
test_iterators_in1_in2<bidirectional_iterator<int*>>();
test_iterators_in1_in2<random_access_iterator<int*>>();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123139.420897.patch
Type: text/x-patch
Size: 693 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220406/0481f536/attachment.bin>
More information about the libcxx-commits
mailing list