Skip to content

Commit 6a57523

Browse files
committed
adds missing file
1 parent bec1572 commit 6a57523

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libcxx/test/std/algorithms/alg.nonmodifying/alg.fold/requirements.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ struct bad_iterator_category {
2424
};
2525

2626
struct non_movable {
27+
non_movable() = default;
2728
non_movable(non_movable&&) = delete;
2829
};
2930

@@ -41,6 +42,7 @@ struct copyable_non_movable {
4142
};
4243

4344
struct non_copy_constructible_callable {
45+
non_copy_constructible_callable() = default;
4446
non_copy_constructible_callable(non_copy_constructible_callable&&) = default;
4547
non_copy_constructible_callable(non_copy_constructible_callable const&) = delete;
4648

0 commit comments

Comments
 (0)