Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/std/tests/P0896R4_views_drop_while/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ int main() {
static_assert((instantiation_test(), true));
instantiation_test();

{ // Validate **non-standard guarantee** that predicates are moved into the range adaptor closure, and into the view
{ // Validate guarantee that predicates are moved into the range adaptor closure, and into the view
// object from an rvalue closure
struct Fn {
Fn() = default;
Expand Down
4 changes: 2 additions & 2 deletions tests/std/tests/P0896R4_views_filter/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ int main() {
static_assert((instantiation_test(), true));
instantiation_test();

{ // Validate **non-standard guarantee** that predicates are moved into the range adaptor closure, and into the view
// object from an rvalue closure
{ // Validate guarantee that predicates are moved into the range adaptor closure, and into
// the view object from an rvalue closure
struct Fn {
Fn() = default;
Fn(Fn&&) = default;
Expand Down
2 changes: 1 addition & 1 deletion tests/std/tests/P0896R4_views_take_while/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ int main() {
static_assert((instantiation_test(), true));
instantiation_test();

{ // Validate **non-standard guarantee** that predicates are moved into the range adaptor closure, and into the view
{ // Validate guarantee that predicates are moved into the range adaptor closure, and into the view
// object from an rvalue closure
struct Fn {
Fn() = default;
Expand Down
2 changes: 1 addition & 1 deletion tests/std/tests/P0896R4_views_transform/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ int main() {
static_assert((iterator_instantiation_test(), true));
iterator_instantiation_test();

{ // Validate **non-standard guarantee** that predicates are moved into the range adaptor closure, and into the view
{ // Validate guarantee that predicates are moved into the range adaptor closure, and into the view
// object from an rvalue closure
struct Fn {
Fn() = default;
Expand Down