Remove move constructor and assignment operator
This commit is contained in:
parent
5249105b04
commit
c97a1b3b4d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue