mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 00:32:53 +00:00
ad17d9a979
If the copy assignment operator is deleted, then the copy constructor should be deleted as well, otherwise it's a hole in the API where copies can be made (and if this were an intended case, it should be documented). So we delete the copy constructor and explicitly default the move assignment and move constructor to signify this is intended to be a move-only type.