mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00: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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue