Merge pull request #2983 from lioncash/delete

WII_Socket: Make the copy-assignment operator deleted
This commit is contained in:
Scott Mansell 2015-09-06 19:20:47 +12:00
commit 728d082bc7
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ private:
public:
WiiSocket() : fd(-1), nonBlock(false) {}
~WiiSocket();
void operator=(WiiSocket const&); // Don't implement
void operator=(WiiSocket const&) = delete;
};