File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 221
221
9 . Renamed ` AttributeSet::get_key_value_at() `
222
222
into ` AttributeSet::key_value() `
223
223
224
- 9 . Renamed ` AttributeSet::get_key_values() `
224
+ 10 . Renamed ` AttributeSet::get_key_values() `
225
225
into ` AttributeSet::iter_key_values() `
226
226
227
- 10 . Renamed ` ServiceId::max_len() `
227
+ 11 . Renamed ` ServiceId::max_len() `
228
228
into ` ServiceId::max_number_of_characters() `
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ namespace iox2 {
21
21
class ServiceId {
22
22
public:
23
23
// / Returns the maximum string length of a [`ServiceId`]
24
- auto max_len () -> uint64_t;
24
+ auto max_number_of_characters () -> uint64_t;
25
25
26
26
// / Returns the string value of the [`ServiceId`]
27
27
auto c_str () const -> const char*;
Original file line number Diff line number Diff line change 13
13
#include " iox2/service_id.hpp"
14
14
15
15
namespace iox2 {
16
- auto ServiceId::max_len () -> uint64_t {
16
+ auto ServiceId::max_number_of_characters () -> uint64_t {
17
17
return IOX2_SERVICE_ID_LENGTH;
18
18
}
19
19
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ impl ServiceId {
40
40
}
41
41
42
42
/// Returns the maximum string length of a [`ServiceId`]
43
- pub const fn max_len ( ) -> usize {
43
+ pub const fn max_number_of_characters ( ) -> usize {
44
44
SERVICE_ID_CAPACITY
45
45
}
46
46
You can’t perform that action at this time.
0 commit comments