mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Merge #21371: fuzz: fix gcc Woverloaded-virtual build warnings
36aa2955b8
fuzz: fix gcc Woverloaded-virtual build warnings (Jon Atack) Pull request description: Possible fixup to gcc build warnings since merge ofb22d4c1607
. Closes #21369. ACKs for top commit: practicalswift: cr ACK36aa2955b8
: patch looks correct achow101: ACK36aa2955b8
kristapsk: ACK36aa2955b8
, this fixes compiler warnings for me with GCC 9.3.0. Tree-SHA512: b6c99690ff72b809ce8105696744546252691b618f54311a9d930d9975fc692071ef408450f618fbb4aa99ee5390028a6eabbc968e22b2e8d2bd56bbafef49f8
This commit is contained in:
commit
a22653a636
1 changed files with 6 additions and 0 deletions
|
@ -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.");
|
||||
|
|
Loading…
Reference in a new issue