mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
9ebd257206
The move assignment operator for a class is implicitly deleted when the class has a non-static reference data member, which is true of WiiSocket's m_socket_manager member. Explicitly declaring the operator as default generates a -Wdefaulted-function-deleted warning on Clang. Delete the move constructor as well for consistency.