File tree 1 file changed +4
-4
lines changed
src/data-model-providers/codegen
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ struct ServerClusterRegistration
34
34
ServerClusterInterface * const serverClusterInterface;
35
35
ServerClusterRegistration * next;
36
36
37
- constexpr ServerClusterRegistration (ServerClusterInterface &interface, ServerClusterRegistration * next_item = nullptr ) :
37
+ constexpr ServerClusterRegistration (ServerClusterInterface & interface, ServerClusterRegistration * next_item = nullptr ) :
38
38
serverClusterInterface(&interface), next(next_item)
39
39
{}
40
- ServerClusterRegistration (ServerClusterRegistration &&other) = default ;
40
+ ServerClusterRegistration (ServerClusterRegistration && other) = default ;
41
41
42
42
// 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 ;
45
45
};
46
46
47
47
// / Allows registering and retrieving ServerClusterInterface instances for specific cluster paths.
You can’t perform that action at this time.
0 commit comments