X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ffield.cpp;h=df2808841e6c2dfb324a635c0aa85ec1e520fd64;hp=66087cfae2316b977324a9952b63c1919f55e7d0;hb=65cd3c0cfa205aa6f67ff974f561882d5eafdd89;hpb=efc2642c22639e9af4bd01953bfd4453f6218f61 diff --git a/src/bin/lttng-sessiond/field.cpp b/src/bin/lttng-sessiond/field.cpp index 66087cfae..df2808841 100644 --- a/src/bin/lttng-sessiond/field.cpp +++ b/src/bin/lttng-sessiond/field.cpp @@ -74,8 +74,8 @@ lst::integer_type::integer_type(unsigned int in_alignment, type(in_alignment), byte_order{in_byte_order}, size{in_size}, - signedness{in_signedness}, - base{in_base} + signedness_{in_signedness}, + base_{in_base} { } @@ -85,8 +85,8 @@ bool lst::integer_type::_is_equal(const type &base_other) const noexcept return this->byte_order == other.byte_order && this->size == other.size && - this->signedness == other.signedness && - this->base == other.base; + this->signedness_ == other.signedness_ && + this->base_ == other.base_; } void lst::integer_type::accept(type_visitor& visitor) const @@ -219,7 +219,7 @@ void lst::dynamic_length_array_type::accept(type_visitor& visitor) const } lst::string_type::string_type(unsigned int in_alignment, enum encoding in_encoding) : - type(in_alignment), encoding{in_encoding} + type(in_alignment), encoding_{in_encoding} { } @@ -227,7 +227,7 @@ bool lst::string_type::_is_equal(const type& base_other) const noexcept { const auto& other = static_cast(base_other); - return this->encoding == other.encoding; + return this->encoding_ == other.encoding_; } lst::static_length_string_type::static_length_string_type(