genbindings: hide another unprojectable method

This commit is contained in:
mappu 2024-08-18 17:47:51 +12:00
parent ef4dc703e6
commit 3fd8ec777d
1 changed files with 5 additions and 0 deletions

View File

@ -270,6 +270,11 @@ nextMethod:
mm.MethodName = methodName[3:]
}
if strings.Contains(methodName, `QGADGET`) {
log.Printf("Skipping method %q with weird QGADGET behaviour\n", mm.MethodName)
continue
}
err := parseMethod(node, &mm)
if err != nil {
if errors.Is(err, ErrTooComplex) {