genbindings/config: update for Qt 6.8

This commit is contained in:
mappu 2024-11-22 19:05:48 +13:00
parent 2a502f24ff
commit 6e0c417f00

View File

@ -234,6 +234,11 @@ func AllowMethod(className string, mm CppMethod) error {
return ErrTooComplex
}
if className == "QXmlStreamEntityResolver" && mm.MethodName == "operator=" {
// Present in Qt 6.7, but marked as =delete by Q_DISABLE_COPY_MOVE in Qt 6.8
return ErrTooComplex
}
return nil // OK, allow
}