File tree Expand file tree Collapse file tree 5 files changed +9
-11
lines changed
hazelcast/include/hazelcast/client Expand file tree Collapse file tree 5 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class HAZELCAST_API NearCacheManager
60
60
{
61
61
return std::static_pointer_cast<NearCache<KS, V>>(
62
62
near_cache_map_.get (name));
63
- };
63
+ }
64
64
65
65
/* *
66
66
* Creates a new {@link NearCache} with given configurations or returns
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class HAZELCAST_API membership_listener final
70
70
{
71
71
joined_ = std::forward<Handler>(h);
72
72
return *this ;
73
- };
73
+ }
74
74
75
75
/* *
76
76
* \copydoc membership_listener::on_joined
@@ -81,7 +81,7 @@ class HAZELCAST_API membership_listener final
81
81
{
82
82
on_joined (std::forward<Handler>(h));
83
83
return std::move (*this );
84
- };
84
+ }
85
85
86
86
/* *
87
87
* Set an handler function to be invoked when an existing member leaves the
@@ -94,7 +94,7 @@ class HAZELCAST_API membership_listener final
94
94
{
95
95
left_ = std::forward<Handler>(h);
96
96
return *this ;
97
- };
97
+ }
98
98
99
99
/* *
100
100
* \copydoc membership_listener::on_left
@@ -105,7 +105,7 @@ class HAZELCAST_API membership_listener final
105
105
{
106
106
on_left (std::forward<Handler>(h));
107
107
return std::move (*this );
108
- };
108
+ }
109
109
110
110
/* *
111
111
* Set an handler function to be invoked once when this listener is
@@ -118,7 +118,7 @@ class HAZELCAST_API membership_listener final
118
118
{
119
119
init_ = std::forward<Handler>(h);
120
120
return *this ;
121
- };
121
+ }
122
122
123
123
/* *
124
124
* \copydoc membership_listener::on_init
@@ -129,7 +129,7 @@ class HAZELCAST_API membership_listener final
129
129
{
130
130
on_init (std::forward<Handler>(h));
131
131
return std::move (*this );
132
- };
132
+ }
133
133
134
134
private:
135
135
using handler_t = std::function<void (const membership_event&)>;
Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ class HAZELCAST_API RingbufferImpl : public PartitionSpecificClientProxy
77
77
{
78
78
public:
79
79
static constexpr const char * SERVICE_NAME = " hz:impl:ringbufferService" ;
80
- ;
81
80
82
81
/* *
83
82
* The maximum number of items that can be retrieved in 1 go using the
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ struct HAZELCAST_API
117
117
const std::shared_ptr<hazelcast::client::serialization::pimpl::data>& lhs,
118
118
const std::shared_ptr<hazelcast::client::serialization::pimpl::data>& rhs)
119
119
const noexcept ;
120
- ;
121
120
};
122
121
123
122
template <>
Original file line number Diff line number Diff line change @@ -1363,7 +1363,7 @@ class HAZELCAST_API ClassDefinitionWriter
1363
1363
std::shared_ptr<ClassDefinition> nestedClassDef =
1364
1364
create_nested_class_def (*portable);
1365
1365
builder_.add_portable_field (field_name, nestedClassDef);
1366
- };
1366
+ }
1367
1367
1368
1368
template <typename T>
1369
1369
void write_portable_array (const std::string& field_name,
@@ -1378,7 +1378,7 @@ class HAZELCAST_API ClassDefinitionWriter
1378
1378
std::shared_ptr<ClassDefinition> nestedClassDef =
1379
1379
create_nested_class_def ((*portables)[0 ]);
1380
1380
builder_.add_portable_array_field (field_name, nestedClassDef);
1381
- };
1381
+ }
1382
1382
1383
1383
std::shared_ptr<ClassDefinition> register_and_get ();
1384
1384
You can’t perform that action at this time.
0 commit comments