You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove user-declared default, copy and move constructors
The defaulted move constructor prevents implicit declaration of
the copy assignment operator, which results in compiler errors
since std::promise requires it.
All 3 user-declared methods removed here are implicitly declared by
the compiler anyway, so no need to default them in the first place.
Relates to #547
0 commit comments