Merge #21371: fuzz: fix gcc Woverloaded-virtual build warnings

36aa2955b816c666f1c27cf6f3d43c75444fab48 fuzz: fix gcc Woverloaded-virtual build warnings (Jon Atack)

Pull request description:

  Possible fixup to gcc build warnings since merge of b22d4c1607b. Closes #21369.

ACKs for top commit:
  practicalswift:
    cr ACK 36aa2955b816c666f1c27cf6f3d43c75444fab48: patch looks correct
  achow101:
    ACK 36aa2955b816c666f1c27cf6f3d43c75444fab48
  kristapsk:
    ACK 36aa2955b816c666f1c27cf6f3d43c75444fab48, this fixes compiler warnings for me with GCC 9.3.0.

Tree-SHA512: b6c99690ff72b809ce8105696744546252691b618f54311a9d930d9975fc692071ef408450f618fbb4aa99ee5390028a6eabbc968e22b2e8d2bd56bbafef49f8
This commit is contained in:
MarcoFalke 2021-03-08 08:23:04 +01:00 committed by pasta
parent 62b47ddf26
commit 249d8a85d4
No known key found for this signature in database
GPG Key ID: 52527BEDABE87984

View File

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