Skip to content

Commit 4d828b6

Browse files
committed
clang-format
1 parent 996918d commit 4d828b6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

libcxx/test/std/ranges/range.adaptors/range.chunk/range.chunk.iter/deref.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
constexpr bool test() {
3333
std::vector<int> vector = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
34-
auto chunked = vector | std::views::chunk(3);
35-
auto input_chunked = input_span<int>(vector) | std::views::chunk(3);
34+
auto chunked = vector | std::views::chunk(3);
35+
auto input_chunked = input_span<int>(vector) | std::views::chunk(3);
3636

3737
// Test `constexpr value_type outer_iterator::operator*() const`
3838
{
@@ -48,7 +48,7 @@ constexpr bool test() {
4848

4949
// Test `constexpr default_sentinel_t outer_iterator::value_type::end() const noexcept`
5050
{
51-
auto inner = *input_chunked.begin();
51+
auto inner = *input_chunked.begin();
5252
[[maybe_unused]] std::same_as<std::default_sentinel_t> auto it = inner.end();
5353
static_assert(noexcept((inner.end())));
5454
}
@@ -57,7 +57,7 @@ constexpr bool test() {
5757
{
5858
std::same_as<int&> decltype(auto) v = *(*chunked.begin()).begin();
5959
assert(v == 1);
60-
}
60+
}
6161

6262
// Test `constexpr value_type iterator::operator*() const`
6363
{

libcxx/test/std/ranges/range.adaptors/range.chunk/range.chunk.iter/increment.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ constexpr bool test() {
4040
auto it = input_chunked.begin();
4141
assert(std::ranges::equal(*++it, std::vector{3, 4}));
4242
}
43-
43+
4444
// Test `constexpr void operator++(int);`
4545
{
4646
auto it = input_chunked.begin();

0 commit comments

Comments
 (0)