Correct type for `char16` and `char32` meta

pull/1554/head
Raul Santos 2024-08-10 17:59:03 +02:00
parent 265412cc53
commit 9a89d226c7
No known key found for this signature in database
GPG Key ID: B532473AE3A803E4
1 changed files with 2 additions and 0 deletions

View File

@ -2770,6 +2770,8 @@ def correct_type(type_name, meta=None, use_alias=True):
if meta is not None:
if "int" in meta:
return f"{meta}_t"
elif "char" in meta:
return f"{meta}_t"
else:
return meta
if type_name in type_conversion: