File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ namespace {
157157 // 1.
158158 struct Error_with_throw_copy {
159159 Error_with_throw_copy () noexcept = default ;
160- Error_with_throw_copy (const Error_with_throw_copy&) noexcept (false ) = default ;
160+ Error_with_throw_copy (const Error_with_throw_copy&) noexcept (false ) {} ;
161161 };
162162 ex::sender auto snd = ex::just_error (Error_with_throw_copy{}) | exec::repeat_n (1 );
163163 static_assert (
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ namespace {
380380 // 2.
381381 struct Error_with_throw_copy {
382382 Error_with_throw_copy () noexcept = default ;
383- Error_with_throw_copy (const Error_with_throw_copy&) noexcept (false ) = default ;
383+ Error_with_throw_copy (const Error_with_throw_copy&) noexcept (false ) {} ;
384384 };
385385 ex::sender auto snd = ex::just_error (Error_with_throw_copy{}) | exec::repeat_until ();
386386 static_assert (
You can’t perform that action at this time.
0 commit comments