mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01:00
Merge pull request #12283 from Dentomologist/wiisocket_delete_move_assignment_operator
WiiSocket: Explicitly delete move assignment operator
This commit is contained in:
commit
f35ee22755
@ -182,10 +182,10 @@ class WiiSocket
|
||||
public:
|
||||
explicit WiiSocket(WiiSockMan& socket_manager) : m_socket_manager(socket_manager) {}
|
||||
WiiSocket(const WiiSocket&) = delete;
|
||||
WiiSocket(WiiSocket&&) = default;
|
||||
WiiSocket(WiiSocket&&) = delete;
|
||||
~WiiSocket();
|
||||
WiiSocket& operator=(const WiiSocket&) = delete;
|
||||
WiiSocket& operator=(WiiSocket&&) = default;
|
||||
WiiSocket& operator=(WiiSocket&&) = delete;
|
||||
|
||||
private:
|
||||
using Timeout = std::chrono::time_point<std::chrono::steady_clock>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user