Skip to content

Commit 4463e95

Browse files
restyled-commitsandreilitvin
authored andcommitted
Restyled by clang-format
1 parent 73c46b6 commit 4463e95

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/data-model-providers/codegen/ServerClusterInterfaceRegistry.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ struct ServerClusterRegistration
3434
ServerClusterInterface * const serverClusterInterface;
3535
ServerClusterRegistration * next;
3636

37-
constexpr ServerClusterRegistration(ServerClusterInterface &interface, ServerClusterRegistration * next_item = nullptr) :
37+
constexpr ServerClusterRegistration(ServerClusterInterface & interface, ServerClusterRegistration * next_item = nullptr) :
3838
serverClusterInterface(&interface), next(next_item)
3939
{}
40-
ServerClusterRegistration(ServerClusterRegistration &&other) = default;
40+
ServerClusterRegistration(ServerClusterRegistration && other) = default;
4141

4242
// we generally do not want to allow copies as those may have different "next" entries.
43-
ServerClusterRegistration(const ServerClusterRegistration &other) = delete;
44-
ServerClusterRegistration& operator=(const ServerClusterRegistration &other) = delete;
43+
ServerClusterRegistration(const ServerClusterRegistration & other) = delete;
44+
ServerClusterRegistration & operator=(const ServerClusterRegistration & other) = delete;
4545
};
4646

4747
/// Allows registering and retrieving ServerClusterInterface instances for specific cluster paths.

0 commit comments

Comments
 (0)