File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
libcxx/test/std/ranges/range.adaptors/range.zip.transform Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -69,13 +69,19 @@ constexpr bool test() {
69
69
}
70
70
71
71
// input and forward
72
- { constructorTest<InputCommonView, ForwardSizedView>(buffer, buffer2); }
72
+ {
73
+ constructorTest<InputCommonView, ForwardSizedView>(buffer, buffer2);
74
+ }
73
75
74
76
// bidi and random_access
75
- { constructorTest<BidiCommonView, SizedRandomAccessView>(buffer, buffer2); }
77
+ {
78
+ constructorTest<BidiCommonView, SizedRandomAccessView>(buffer, buffer2);
79
+ }
76
80
77
81
// contiguous
78
- { constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2); }
82
+ {
83
+ constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2);
84
+ }
79
85
80
86
return true ;
81
87
}
You can’t perform that action at this time.
0 commit comments