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 constructors for response class
Removed the following defaulted constructors:
* Default Constructor
* Copy Constructor
* Move Constructor
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 cpp-netlib#547
0 commit comments