mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
genbindings/c++1z: skip over more advanced AST node types
This commit is contained in:
parent
a78ba20f15
commit
c616c789ff
@ -56,6 +56,7 @@ nextTopLevel:
|
||||
"ClassTemplateSpecializationDecl",
|
||||
"ClassTemplatePartialSpecializationDecl",
|
||||
"FunctionTemplateDecl",
|
||||
"BuiltinTemplateDecl", // Scintilla
|
||||
"VarTemplatePartialSpecializationDecl", // e.g. Qt6 qcontainerinfo.h
|
||||
"VarTemplateSpecializationDecl", // e.g. qhashfunctions.h
|
||||
"TypeAliasTemplateDecl", // e.g. qendian.h
|
||||
@ -130,6 +131,12 @@ nextTopLevel:
|
||||
// TODO e.g. qfuturewatcher.h
|
||||
// Probably can't be supported in the Go binding
|
||||
|
||||
case "AbiTagAttr":
|
||||
// e.g. scintilla.org ScintillaEditBase
|
||||
case "VisibilityAttr":
|
||||
// e.g. scintilla.org ScintillaEditBase
|
||||
// Don't understand why this appears at top level??
|
||||
|
||||
case "UsingDirectiveDecl", // qtextstream.h
|
||||
"UsingDecl", // qglobal.h
|
||||
"UsingShadowDecl": // global.h
|
||||
|
Loading…
Reference in New Issue
Block a user