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
dynamic_format_arg_store has a copy constructor but no explicitly declared move constructor / move assignment operator. These are not automatically generated and any attempts to call the move constructor of dynamic_format_arg_store results in calling the copy constructor. See the following link for quotes from the c++ standard that explicitly state when assignment operators / constructors are automatically generated:
If library maintainers agree that this is a problem that should be fixed, I'm happy to provide a PR to explicitly declare assignment operators and the move constructor.
The text was updated successfully, but these errors were encountered:
dynamic_format_arg_store has a copy constructor but no explicitly declared move constructor / move assignment operator. These are not automatically generated and any attempts to call the move constructor of dynamic_format_arg_store results in calling the copy constructor. See the following link for quotes from the c++ standard that explicitly state when assignment operators / constructors are automatically generated:
https://stackoverflow.com/questions/4943958/conditions-for-automatic-generation-of-default-copy-move-ctor-and-copy-move-assi
If library maintainers agree that this is a problem that should be fixed, I'm happy to provide a PR to explicitly declare assignment operators and the move constructor.
The text was updated successfully, but these errors were encountered: