We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e9ba4 commit 2aedde0Copy full SHA for 2aedde0
libcxx/test/std/ranges/range.adaptors/range.concat/ctor.default.pass.cpp
@@ -71,10 +71,10 @@ constexpr bool test() {
71
72
// check when input is an output range, which should be well-formed
73
{
74
- std::vector<int> v{1,2,3};
+ std::vector<int> v{1, 2, 3};
75
auto r = std::views::counted(std::back_inserter(v), 3);
76
static_assert(!std::ranges::input_range<decltype(r)>);
77
- }
+ }
78
79
return true;
80
}
0 commit comments