mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #2983 from lioncash/delete
WII_Socket: Make the copy-assignment operator deleted
This commit is contained in:
@ -192,7 +192,7 @@ private:
|
|||||||
public:
|
public:
|
||||||
WiiSocket() : fd(-1), nonBlock(false) {}
|
WiiSocket() : fd(-1), nonBlock(false) {}
|
||||||
~WiiSocket();
|
~WiiSocket();
|
||||||
void operator=(WiiSocket const&); // Don't implement
|
void operator=(WiiSocket const&) = delete;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user