diff --git a/cmd/genbindings/config-allowlist.go b/cmd/genbindings/config-allowlist.go index 5646f5e3..36c9b34a 100644 --- a/cmd/genbindings/config-allowlist.go +++ b/cmd/genbindings/config-allowlist.go @@ -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 }