Skip to content
Snippets Groups Projects
Commit 3fb37709 authored by Mark de Wever's avatar Mark de Wever
Browse files

[libc++] Use cpp20_output_iterator in tests.

Adds the new cpp20_output_iterator in the ranges::transform test.

Reviewed By: philnik, #libc

Differential Revision: https://reviews.llvm.org/D123139
parent d7862497
No related branches found
No related tags found
No related merge requests found
......@@ -571,6 +571,7 @@ constexpr bool test() {
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*>>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment