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 bec1572 commit 6a57523Copy full SHA for 6a57523
libcxx/test/std/algorithms/alg.nonmodifying/alg.fold/requirements.h
@@ -24,6 +24,7 @@ struct bad_iterator_category {
24
};
25
26
struct non_movable {
27
+ non_movable() = default;
28
non_movable(non_movable&&) = delete;
29
30
@@ -41,6 +42,7 @@ struct copyable_non_movable {
41
42
43
44
struct non_copy_constructible_callable {
45
+ non_copy_constructible_callable() = default;
46
non_copy_constructible_callable(non_copy_constructible_callable&&) = default;
47
non_copy_constructible_callable(non_copy_constructible_callable const&) = delete;
48
0 commit comments