genbindings: more integer type handling

This commit is contained in:
mappu 2024-08-17 14:10:17 +12:00
parent 58eee48a5d
commit 0dce1b4fe2
1 changed files with 8 additions and 4 deletions

View File

@ -41,10 +41,8 @@ func (p CppParameter) RenderTypeGo() string {
}
switch p.ParameterType {
case "char", "qint8":
ret += "byte"
case "unsigned char", "quint8":
ret += "byte"
case "char", "qint8", "unsigned char", "uchar", "quint8":
ret += "byte" // Strictly speaking, Go byte is unsigned and char may be signed
case "short", "qint16":
ret += "int16"
case "ushort", "quint16":
@ -82,6 +80,12 @@ func (p CppParameter) RenderTypeGo() string {
ret += "float32"
case "double":
ret += "float64"
case "qsizetype":
if C.sizeof_size_t == 4 {
ret += "uint32"
} else {
ret += "uint64"
}
default:
// Do not transform this type
ret += p.ParameterType