File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class IntrusiveSingleLinkedList
60
60
return *this ;
61
61
}
62
62
63
- IntrusiveSingleLinkedList (const IntrusiveSingleLinkedList & other) = delete ;
63
+ IntrusiveSingleLinkedList (const IntrusiveSingleLinkedList & other) = delete ;
64
64
IntrusiveSingleLinkedList & operator =(const IntrusiveSingleLinkedList & other) = delete ;
65
65
66
66
// / Determines whether this object is part of a linked list already.
@@ -126,8 +126,8 @@ class ServerClusterInterface : public detail::IntrusiveSingleLinkedList<ServerCl
126
126
ServerClusterInterface () = default ;
127
127
virtual ~ServerClusterInterface () = default ;
128
128
129
- ServerClusterInterface (ServerClusterInterface && other) = default ;
130
- ServerClusterInterface & operator =(ServerClusterInterface && other) = default ;
129
+ ServerClusterInterface (ServerClusterInterface && other) = default ;
130
+ ServerClusterInterface & operator =(ServerClusterInterface && other) = default ;
131
131
132
132
ServerClusterInterface (const ServerClusterInterface & other) = delete ;
133
133
ServerClusterInterface & operator =(const ServerClusterInterface & other) = delete ;
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ class StandardServerCluster : public ServerClusterInterface
38
38
StandardServerCluster ();
39
39
virtual ~StandardServerCluster () = default ;
40
40
41
- StandardServerCluster (StandardServerCluster && other) = default ;
42
- StandardServerCluster & operator =(StandardServerCluster && other) = default ;
41
+ StandardServerCluster (StandardServerCluster && other) = default ;
42
+ StandardServerCluster & operator =(StandardServerCluster && other) = default ;
43
43
44
44
StandardServerCluster (const StandardServerCluster & other) = delete ;
45
45
StandardServerCluster & operator =(const StandardServerCluster & other) = delete ;
You can’t perform that action at this time.
0 commit comments