diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-03-08 08:23:04 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-03-08 08:23:10 +0100 |
commit | a22653a636e8dfc1b898ef8dd18a77f2d31082a5 (patch) | |
tree | c152ccda34003b3d0a155a5214146feba4864ec4 | |
parent | e797388f8b91235c06a9589e3258c476c837f897 (diff) | |
parent | 36aa2955b816c666f1c27cf6f3d43c75444fab48 (diff) |
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
-rw-r--r-- | src/test/fuzz/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/fuzz/util.h b/src/test/fuzz/util.h index f2d43032f4..d8c536e8b1 100644 --- a/src/test/fuzz/util.h +++ b/src/test/fuzz/util.h @@ -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."); |