Skip to content

Commit

Permalink
Refs #21222. Regenerated code
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware committed Jun 25, 2024
1 parent 5651b5d commit 178994a
Show file tree
Hide file tree
Showing 13 changed files with 798 additions and 49 deletions.
2 changes: 1 addition & 1 deletion test/dds-types-test/annotations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace AnnotationTest {
* @brief This class represents the enumeration InnerEnumHelper defined by the user in the IDL file.
* @ingroup annotations
*/
enum class InnerEnumHelper : uint32_t
enum class InnerEnumHelper : int32_t
{
ONE,
TWO
Expand Down
4 changes: 2 additions & 2 deletions test/dds-types-test/declarations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ class ForwardUnion
}


int32_t m__d {2};
int32_t m__d {2147483647};

union
{
Expand Down Expand Up @@ -1761,7 +1761,7 @@ class ModuledForwardUnion
}


int32_t m__d {2};
int32_t m__d {2147483647};

union
{
Expand Down
2 changes: 1 addition & 1 deletion test/dds-types-test/enumerations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Test {
* @brief This class represents the enumeration InnerEnumHelper defined by the user in the IDL file.
* @ingroup enumerations
*/
enum class InnerEnumHelper : uint32_t
enum class InnerEnumHelper : int32_t
{
ENUM_VALUE_1,
ENUM_VALUE_2,
Expand Down
4 changes: 2 additions & 2 deletions test/dds-types-test/external.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3762,7 +3762,7 @@ class recursive_union
}


uint8_t m__d {0};
uint8_t m__d {127};

union
{
Expand Down Expand Up @@ -4380,7 +4380,7 @@ class recursive_structure_container
}


uint8_t m__d {0};
uint8_t m__d {127};

union
{
Expand Down
6 changes: 3 additions & 3 deletions test/dds-types-test/helpers/basic_inner_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
* @brief This class represents the enumeration InnerEnumHelper defined by the user in the IDL file.
* @ingroup basic_inner_types
*/
enum class InnerEnumHelper : uint32_t
enum class InnerEnumHelper : int32_t
{
ENUM_VALUE_1,
ENUM_VALUE_2,
Expand Down Expand Up @@ -670,7 +670,7 @@ class InnerUnionHelper
int16_t _shortValue)
{
shortValue_() = _shortValue;
m__d = 2;
m__d = 2147483647;
}

/*!
Expand Down Expand Up @@ -762,7 +762,7 @@ class InnerUnionHelper
}


int32_t m__d {2};
int32_t m__d {2147483647};

union
{
Expand Down
Loading

0 comments on commit 178994a

Please sign in to comment.