Skip to content

Commit 2aedde0

Browse files
fix
1 parent 30e9ba4 commit 2aedde0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/test/std/ranges/range.adaptors/range.concat/ctor.default.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ constexpr bool test() {
7171

7272
// check when input is an output range, which should be well-formed
7373
{
74-
std::vector<int> v{1,2,3};
74+
std::vector<int> v{1, 2, 3};
7575
auto r = std::views::counted(std::back_inserter(v), 3);
7676
static_assert(!std::ranges::input_range<decltype(r)>);
77-
}
77+
}
7878

7979
return true;
8080
}

0 commit comments

Comments
 (0)