Skip to content

Commit c94e17c

Browse files
committed
format
1 parent 7a6f1a4 commit c94e17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/std/ranges/range.adaptors/range.adjacent/iterator/subscript.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ constexpr void test() {
5454
if constexpr (N >= 4)
5555
assert(&std::get<3>(it[0]) == &buffer[3]);
5656
if constexpr (N >= 5)
57-
assert(&std::get<4>(it[0]) == &buffer[4]);
57+
assert(&std::get<4>(it[0]) == &buffer[4]);
5858

5959
static_assert(std::is_same_v<decltype(it[0]), expectedTupleType<N, int&>>);
6060
}

0 commit comments

Comments
 (0)