Skip to content

Commit

Permalink
Enumerations as signed integer (#359)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware authored Jun 21, 2024
1 parent ac2d6d6 commit 549ef80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ enum_type(ctx, parent, enum) ::= <<
* @brief This class represents the enumeration $enum.name$ defined by the user in the IDL file.
* @ingroup $ctx.trimfilename$
*/
enum class $enum.name$ : uint32_t
enum class $enum.name$ : int32_t
{
$enum.members:{ member | $member.name$}; separator=",\n"$
};
Expand Down

0 comments on commit 549ef80

Please sign in to comment.