...
This commit is contained in:
@@ -45,6 +45,10 @@ def map_type(clang_type: Type):
|
||||
size = canonical.get_array_size()
|
||||
return f"[{size}]{map_type(element_type)}"
|
||||
|
||||
if kind == TypeKind.INCOMPLETEARRAY:
|
||||
element_type = canonical.get_array_element_type()
|
||||
return f"[?]{map_type(element_type)}"
|
||||
|
||||
if kind == TypeKind.FUNCTIONPROTO or kind == TypeKind.FUNCTIONNOPROTO:
|
||||
arg_types = []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user