mirror of
https://github.com/mappu/miqt.git
synced 2025-04-03 12:20:21 +00:00
genbindings: intptr_t-qintptr pointer casts require C-style casts
This commit is contained in:
parent
90de7178f2
commit
b50870b9d9
@ -73,8 +73,8 @@ func (p CppParameter) RenderTypeCabi() 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 "qreal":
|
case "qreal":
|
||||||
ret = "double"
|
ret = "double"
|
||||||
case "qintptr", "QIntegerForSizeof<void *>::Signed":
|
case "qintptr", "QIntegerForSizeof<void *>::Signed": // long long int
|
||||||
ret = "intptr_t"
|
ret = "intptr_t" // long int
|
||||||
case "quintptr", "uintptr", "QIntegerForSizeof<void *>::Unsigned":
|
case "quintptr", "uintptr", "QIntegerForSizeof<void *>::Unsigned":
|
||||||
ret = "uintptr_t"
|
ret = "uintptr_t"
|
||||||
case "qsizetype", "qptrdiff", "QIntegerForSizeof<std::size_t>::Signed":
|
case "qsizetype", "qptrdiff", "QIntegerForSizeof<std::size_t>::Signed":
|
||||||
@ -513,6 +513,9 @@ func emitAssignCppToCabi(assignExpression string, p CppParameter, rvalue string)
|
|||||||
|
|
||||||
if p.QtCppOriginalType != nil && p.QtCppOriginalType.Const != p.Const {
|
if p.QtCppOriginalType != nil && p.QtCppOriginalType.Const != p.Const {
|
||||||
afterCall += indent + "" + assignExpression + "const_cast<" + p.RenderTypeCabi() + ">(static_cast<" + p.RenderTypeIntermediateCpp() + ">(" + namePrefix + "_ret));\n"
|
afterCall += indent + "" + assignExpression + "const_cast<" + p.RenderTypeCabi() + ">(static_cast<" + p.RenderTypeIntermediateCpp() + ">(" + namePrefix + "_ret));\n"
|
||||||
|
} else if p.QtCppOriginalType != nil && p.QtCppOriginalType.ParameterType == "qintptr" {
|
||||||
|
// Hard int cast
|
||||||
|
afterCall += indent + "" + assignExpression + "(" + p.RenderTypeCabi() + ")(" + namePrefix + "_ret);\n"
|
||||||
} else {
|
} else {
|
||||||
afterCall += indent + "" + assignExpression + "static_cast<" + p.RenderTypeCabi() + ">(" + namePrefix + "_ret);\n"
|
afterCall += indent + "" + assignExpression + "static_cast<" + p.RenderTypeCabi() + ">(" + namePrefix + "_ret);\n"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user