Fixed uint8_t being bound to byte instead of ubyte (#2735)
This commit is contained in:
parent
6c9248914e
commit
630890f5de
@ -90,7 +90,7 @@ local function convert_type(arg)
|
||||
elseif hasPrefix(ctype, "uint16_t") then
|
||||
ctype = ctype:gsub("uint16_t", "ushort")
|
||||
elseif hasPrefix(ctype, "uint8_t") then
|
||||
ctype = ctype:gsub("uint8_t", "byte")
|
||||
ctype = ctype:gsub("uint8_t", "ubyte")
|
||||
elseif hasPrefix(ctype, "uintptr_t") then
|
||||
ctype = ctype:gsub("uintptr_t", "ulong")
|
||||
elseif hasPrefix(ctype, "const ") and hasSuffix(ctype, "*") then
|
||||
|
Loading…
Reference in New Issue
Block a user