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

View File

@ -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;