Skip to content

Commit dfd3c3f

Browse files
committed
format code
1 parent 7db2013 commit dfd3c3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/ranges.copy.pass.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ constexpr bool test() {
128128
{ // check that an iterator is returned with a borrowing range
129129
std::array in{1, 2, 3, 4};
130130
std::array<int, 4> out;
131-
std::same_as<std::ranges::in_out_result<std::array<int, 4>::iterator, int*>> auto ret = std::ranges::copy(std::views::all(in), out.data());
131+
std::same_as<std::ranges::in_out_result<std::array<int, 4>::iterator, int*>> auto ret =
132+
std::ranges::copy(std::views::all(in), out.data());
132133
assert(ret.in == in.end());
133134
assert(ret.out == out.data() + 4);
134135
assert(in == out);

0 commit comments

Comments
 (0)