Skip to content

Commit a22653a

Browse files
author
MarcoFalke
committed
Merge #21371: fuzz: fix gcc Woverloaded-virtual build warnings
36aa295 fuzz: fix gcc Woverloaded-virtual build warnings (Jon Atack) Pull request description: Possible fixup to gcc build warnings since merge of b22d4c1. Closes #21369. ACKs for top commit: practicalswift: cr ACK 36aa295: patch looks correct achow101: ACK 36aa295 kristapsk: ACK 36aa295, this fixes compiler warnings for me with GCC 9.3.0. Tree-SHA512: b6c99690ff72b809ce8105696744546252691b618f54311a9d930d9975fc692071ef408450f618fbb4aa99ee5390028a6eabbc968e22b2e8d2bd56bbafef49f8
2 parents e797388 + 36aa295 commit a22653a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/fuzz/util.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,12 @@ class FuzzedSock : public Sock
543543
{
544544
}
545545

546+
FuzzedSock& operator=(Sock&& other) override
547+
{
548+
assert(false && "Not implemented yet.");
549+
return *this;
550+
}
551+
546552
SOCKET Get() const override
547553
{
548554
assert(false && "Not implemented yet.");

0 commit comments

Comments
 (0)