mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 01:18:37 +00:00
genbindings: fix qintptr cabi typing
This commit is contained in:
parent
441d96398f
commit
ef4dc703e6
@ -35,6 +35,8 @@ func (p CppParameter) RenderTypeCpp() string {
|
|||||||
ret = "_Float16" // No idea where this typedef comes from, but it exists
|
ret = "_Float16" // No idea where this typedef comes from, but it exists
|
||||||
case "qsizetype":
|
case "qsizetype":
|
||||||
ret = "size_t"
|
ret = "size_t"
|
||||||
|
case "qintptr":
|
||||||
|
ret = "uintptr_t"
|
||||||
case "QRgb":
|
case "QRgb":
|
||||||
ret = "unsigned int"
|
ret = "unsigned int"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user