File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,6 @@ class DefaultServerCluster : public ServerClusterInterface
38
38
DefaultServerCluster ();
39
39
~DefaultServerCluster () override = default ;
40
40
41
- DefaultServerCluster (DefaultServerCluster && other) = default ;
42
- DefaultServerCluster & operator =(DefaultServerCluster && other) = default ;
43
-
44
- DefaultServerCluster (const DefaultServerCluster & other) = delete ;
45
- DefaultServerCluster & operator =(const DefaultServerCluster & other) = delete ;
46
-
47
41
void IncreaseDataVersion () { mDataVersion ++; }
48
42
49
43
// ////////////////////////// ServerClusterInterface implementation ////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -40,15 +40,8 @@ namespace app {
40
40
class ServerClusterInterface
41
41
{
42
42
public:
43
- ServerClusterInterface () = default ;
44
43
virtual ~ServerClusterInterface () = default ;
45
44
46
- ServerClusterInterface (ServerClusterInterface && other) = default ;
47
- ServerClusterInterface & operator =(ServerClusterInterface && other) = default ;
48
-
49
- ServerClusterInterface (const ServerClusterInterface & other) = delete ;
50
- ServerClusterInterface & operator =(const ServerClusterInterface & other) = delete ;
51
-
52
45
// /////////////////////////////////// Cluster Metadata Support //////////////////////////////////////////////////
53
46
[[nodiscard]] virtual ClusterId GetClusterId () const = 0;
54
47
You can’t perform that action at this time.
0 commit comments