Skip to content

Commit

Permalink
Merge #21371: fuzz: fix gcc Woverloaded-virtual build warnings
Browse files Browse the repository at this point in the history
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
  • Loading branch information
MarcoFalke committed Mar 8, 2021
2 parents e797388 + 36aa295 commit a22653a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/fuzz/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,12 @@ class FuzzedSock : public Sock
{
}

FuzzedSock& operator=(Sock&& other) override
{
assert(false && "Not implemented yet.");
return *this;
}

SOCKET Get() const override
{
assert(false && "Not implemented yet.");
Expand Down

0 comments on commit a22653a

Please sign in to comment.