From 3d0871608f92cbc96fdc628bd21dc3ca4a54af24 Mon Sep 17 00:00:00 2001 From: Samuel Felton Date: Thu, 30 Nov 2023 13:24:45 +0100 Subject: [PATCH] Fix default arguments for unsigned ints such as vpServo::addTask --- .../python/generator/visp_python_bindgen/generator_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/python/generator/visp_python_bindgen/generator_config.py b/modules/python/generator/visp_python_bindgen/generator_config.py index e20351b93d..67b15576dc 100644 --- a/modules/python/generator/visp_python_bindgen/generator_config.py +++ b/modules/python/generator/visp_python_bindgen/generator_config.py @@ -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$' ]