Remove move constructor and assignment operator

This commit is contained in:
Lukas Joswiak 2021-08-09 15:33:01 -07:00
parent 5249105b04
commit c97a1b3b4d
1 changed files with 0 additions and 3 deletions

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;