Skip to content

Commit 351462e

Browse files
committed
format
1 parent 343d756 commit 351462e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

libcxx/test/std/ranges/range.adaptors/range.zip.transform/ctor.views.pass.cpp

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,19 @@ constexpr bool test() {
6969
}
7070

7171
// input and forward
72-
{ constructorTest<InputCommonView, ForwardSizedView>(buffer, buffer2); }
72+
{
73+
constructorTest<InputCommonView, ForwardSizedView>(buffer, buffer2);
74+
}
7375

7476
// bidi and random_access
75-
{ constructorTest<BidiCommonView, SizedRandomAccessView>(buffer, buffer2); }
77+
{
78+
constructorTest<BidiCommonView, SizedRandomAccessView>(buffer, buffer2);
79+
}
7680

7781
// contiguous
78-
{ constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2); }
82+
{
83+
constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2);
84+
}
7985

8086
return true;
8187
}

0 commit comments

Comments
 (0)