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
The wording for in_place_stop_token is missing copy constructor and copy assignment and contains a destructor the effects of which are not described.
The reference implementation for in_place_stop_token provides trivial copy, trivial destructor and linear move. This is clearly not according to the specification.
Assuming the intent is for in_place_stop_token to be trivially copyable, the special member functions for copying should be specified defaulted and the destructor removed.
The text was updated successfully, but these errors were encountered:
The wording for
in_place_stop_token
is missing copy constructor and copy assignment and contains a destructor the effects of which are not described.The reference implementation for
in_place_stop_token
provides trivial copy, trivial destructor and linear move. This is clearly not according to the specification.Assuming the intent is for
in_place_stop_token
to be trivially copyable, the special member functions for copying should be specified defaulted and the destructor removed.The text was updated successfully, but these errors were encountered: