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
definition of implicit copy constructor for 'prop<>' is deprecated because
it has a user-declared copy assignment operator
We can't "fix" the code by defining or defaulting a copy constructor; that would break aggregate initialization. I don't know what else to do in my own code except suppress the warning and hope the behavior is never removed.
The text was updated successfully, but these errors were encountered:
In p3325r3,
prop
is defined with a deleted copy-assignment operator, as follows:This causes clang to issue the diagnostic:
We can't "fix" the code by defining or defaulting a copy constructor; that would break aggregate initialization. I don't know what else to do in my own code except suppress the warning and hope the behavior is never removed.
The text was updated successfully, but these errors were encountered: