Skip to content

Commit

Permalink
use byte type instead of char for int8 - fixes RobotecAI#55
Browse files Browse the repository at this point in the history
  • Loading branch information
jankolkmeier committed Sep 11, 2023
1 parent 9c50a34 commit c5c2cd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_marshal_type(type_):
'boolean': 'byte',
'octet': 'byte',
'uint8': 'byte',
'int8': 'char',
'int8': 'byte',
'uint16': 'short',
'int16': 'short',
'uint32': 'int',
Expand Down

0 comments on commit c5c2cd2

Please sign in to comment.