fuzz: fix gcc Woverloaded-virtual build warnings

This commit is contained in:
Jon Atack 2021-03-05 12:13:34 +01:00
parent ed25cb58f6
commit 36aa2955b8
No known key found for this signature in database
GPG key ID: 4F5721B3D0E3921D

View file

@ -543,6 +543,12 @@ public:
{
}
FuzzedSock& operator=(Sock&& other) override
{
assert(false && "Not implemented yet.");
return *this;
}
SOCKET Get() const override
{
assert(false && "Not implemented yet.");