WII_Socket: Make the copy-assignment operator deleted

This commit is contained in:
Lioncash 2015-09-06 03:12:01 -04:00
parent 4991c6340a
commit 007939c4e9
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;
};