1
0
mirror of https://github.com/apple/foundationdb.git synced 2025-05-21 05:53:02 +08:00

Remove move constructor and assignment operator

This commit is contained in:
Lukas Joswiak 2021-08-09 15:33:01 -07:00
parent 305a17c811
commit 85fa264a16

@ -57,9 +57,6 @@ class ConfigBroadcasterImpl {
Version lastSeenVersion;
ConfigBroadcastInterface broadcastInterface;
BroadcastClientDetails(BroadcastClientDetails&& other) = default;
BroadcastClientDetails& operator=(BroadcastClientDetails&& other) = default;
bool operator==(BroadcastClientDetails const& rhs) const {
return configClassSet == rhs.configClassSet && lastSeenVersion == rhs.lastSeenVersion &&
broadcastInterface == rhs.broadcastInterface;