Skip to content

Commit

Permalink
Fix default arguments for unsigned ints such as vpServo::addTask
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFlt committed Nov 30, 2023
1 parent 2360562 commit 3d08716
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def to_pcpp_args_list(self) -> List[str]:
This only encompasses raw types
'''
IMMUTABLE_TYPES_REGEXS = [
'^(float|double|u?int\d+_t|unsigned|char|long|long\wlong|bool)$',
'^(float|double|u?int\d+_t|unsigned|unsigned int|size_t|ssize_t|char|long|long\wlong|bool)$',
'^std::string$'
]

Expand Down

0 comments on commit 3d08716

Please sign in to comment.