Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12283 from Dentomologist/wiisocket_delete_move_as…
…signment_operator

WiiSocket: Explicitly delete move assignment operator
  • Loading branch information
AdmiralCurtiss committed Nov 11, 2023
2 parents 4345980 + 9ebd257 commit f35ee22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/IOS/Network/Socket.h
Expand Up @@ -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>;
Expand Down

0 comments on commit f35ee22

Please sign in to comment.