Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 96833fe

Browse files
committedFeb 18, 2025·
Restyle
1 parent 4ac95e1 commit 96833fe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎src/app/server-cluster/ServerClusterInterface.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class IntrusiveSingleLinkedList
6060
return *this;
6161
}
6262

63-
IntrusiveSingleLinkedList(const IntrusiveSingleLinkedList & other) = delete;
63+
IntrusiveSingleLinkedList(const IntrusiveSingleLinkedList & other) = delete;
6464
IntrusiveSingleLinkedList & operator=(const IntrusiveSingleLinkedList & other) = delete;
6565

6666
/// Determines whether this object is part of a linked list already.
@@ -126,8 +126,8 @@ class ServerClusterInterface : public detail::IntrusiveSingleLinkedList<ServerCl
126126
ServerClusterInterface() = default;
127127
virtual ~ServerClusterInterface() = default;
128128

129-
ServerClusterInterface(ServerClusterInterface && other) = default;
130-
ServerClusterInterface & operator=(ServerClusterInterface && other) = default;
129+
ServerClusterInterface(ServerClusterInterface && other) = default;
130+
ServerClusterInterface & operator=(ServerClusterInterface && other) = default;
131131

132132
ServerClusterInterface(const ServerClusterInterface & other) = delete;
133133
ServerClusterInterface & operator=(const ServerClusterInterface & other) = delete;

‎src/app/server-cluster/StandardServerCluster.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ class StandardServerCluster : public ServerClusterInterface
3838
StandardServerCluster();
3939
virtual ~StandardServerCluster() = default;
4040

41-
StandardServerCluster(StandardServerCluster && other) = default;
42-
StandardServerCluster & operator=(StandardServerCluster && other) = default;
41+
StandardServerCluster(StandardServerCluster && other) = default;
42+
StandardServerCluster & operator=(StandardServerCluster && other) = default;
4343

4444
StandardServerCluster(const StandardServerCluster & other) = delete;
4545
StandardServerCluster & operator=(const StandardServerCluster & other) = delete;

0 commit comments

Comments
 (0)
Please sign in to comment.