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
In the new hash table data structures, move constructors and move assignment operators are mistakenly allowed. To avoid misuse, we should disable these features along with the default constructors for the same reason.
Is this a duplicate?
Type of Bug
Silent Failure
Describe the bug
In the new hash table data structures, move constructors and move assignment operators are mistakenly allowed. To avoid misuse, we should disable these features along with the default constructors for the same reason.
How to Reproduce
https://godbolt.org/z/3ss7cTPjj
Expected behavior
https://godbolt.org/z/3ss7cTPjj
The above sample code should produce a build error indicating that the corresponding operator has been deleted.
The text was updated successfully, but these errors were encountered: