diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-11-20 20:01:14 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-11-20 20:01:14 +0100 |
commit | f722f900f4211bbddc0f432ce652e68313807ee0 (patch) | |
tree | b91ab3b2768acb6b5323fa1b9aebfecc163662fc /pyGHDL/libghdl/_decorator.py | |
parent | a4f4840bfee3adf2eff26ffb9e5c68182d034dd4 (diff) | |
download | ghdl-f722f900f4211bbddc0f432ce652e68313807ee0.tar.gz ghdl-f722f900f4211bbddc0f432ce652e68313807ee0.tar.bz2 ghdl-f722f900f4211bbddc0f432ce652e68313807ee0.zip |
pyGHDL: add file_comments.py
Diffstat (limited to 'pyGHDL/libghdl/_decorator.py')
-rw-r--r-- | pyGHDL/libghdl/_decorator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/_decorator.py b/pyGHDL/libghdl/_decorator.py index 49694e8a3..b124461e5 100644 --- a/pyGHDL/libghdl/_decorator.py +++ b/pyGHDL/libghdl/_decorator.py @@ -99,7 +99,7 @@ def BindToLibGHDL(subprogramName): return c_bool elif typ is bytes: return c_char_p - elif typ in (c_char, c_char_p): + elif typ in (c_char, c_char_p, c_uint32): return typ elif isinstance(typ, TypeVar): # Humm, recurse ? |