Skip to content

Commit

Permalink
Refs #21783: Regenerate types with latest Fast DDS-Gen v4.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: eProsima <jesuspoderoso@eprosima.com>
  • Loading branch information
JesusPoderoso committed Oct 4, 2024
1 parent d9c18fa commit f5a235b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions test/dds-types-test/enumerations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ enum class InnerEnumHelper : int32_t
*/
enum class EnumWithValues : int32_t
{
ENUM_VALUE1 = -3,
ENUM_VALUE2 = 0,
ENUM_VALUE3 = 3
ENUM_VALUE1,
ENUM_VALUE2,
ENUM_VALUE3
};
/*!
* @brief This class represents the structure EnumStructure defined by the user in the IDL file.
Expand Down
6 changes: 3 additions & 3 deletions test/dds-types-test/enumerationsTypeObjectSupport.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void register_EnumWithValues_type_identifier(
CompleteEnumeratedLiteralSeq literal_seq_EnumWithValues;
{
EnumeratedLiteralFlag flags_ENUM_VALUE1 = TypeObjectUtils::build_enumerated_literal_flag(false);
CommonEnumeratedLiteral common_ENUM_VALUE1 = TypeObjectUtils::build_common_enumerated_literal(-3, flags_ENUM_VALUE1);
CommonEnumeratedLiteral common_ENUM_VALUE1 = TypeObjectUtils::build_common_enumerated_literal(0, flags_ENUM_VALUE1);
eprosima::fastcdr::optional<AppliedBuiltinMemberAnnotations> member_ann_builtin_ENUM_VALUE1;
ann_custom_EnumWithValues.reset();
AppliedAnnotationSeq tmp_ann_custom_ENUM_VALUE1;
Expand All @@ -134,7 +134,7 @@ void register_EnumWithValues_type_identifier(
}
{
EnumeratedLiteralFlag flags_ENUM_VALUE2 = TypeObjectUtils::build_enumerated_literal_flag(false);
CommonEnumeratedLiteral common_ENUM_VALUE2 = TypeObjectUtils::build_common_enumerated_literal(0, flags_ENUM_VALUE2);
CommonEnumeratedLiteral common_ENUM_VALUE2 = TypeObjectUtils::build_common_enumerated_literal(1, flags_ENUM_VALUE2);
eprosima::fastcdr::optional<AppliedBuiltinMemberAnnotations> member_ann_builtin_ENUM_VALUE2;
ann_custom_EnumWithValues.reset();
AppliedAnnotationSeq tmp_ann_custom_ENUM_VALUE2;
Expand All @@ -149,7 +149,7 @@ void register_EnumWithValues_type_identifier(
}
{
EnumeratedLiteralFlag flags_ENUM_VALUE3 = TypeObjectUtils::build_enumerated_literal_flag(false);
CommonEnumeratedLiteral common_ENUM_VALUE3 = TypeObjectUtils::build_common_enumerated_literal(3, flags_ENUM_VALUE3);
CommonEnumeratedLiteral common_ENUM_VALUE3 = TypeObjectUtils::build_common_enumerated_literal(2, flags_ENUM_VALUE3);
eprosima::fastcdr::optional<AppliedBuiltinMemberAnnotations> member_ann_builtin_ENUM_VALUE3;
ann_custom_EnumWithValues.reset();
AppliedAnnotationSeq tmp_ann_custom_ENUM_VALUE3;
Expand Down

0 comments on commit f5a235b

Please sign in to comment.