diff --git a/chore/llcppg/ast/ast.go b/chore/llcppg/ast/ast.go index ee5cb725..807a8267 100644 --- a/chore/llcppg/ast/ast.go +++ b/chore/llcppg/ast/ast.go @@ -130,10 +130,10 @@ const ( Class ) -// struct/union/enum/class Name +// struct/union/enum/class (A::B::)Name type TagExpr struct { Tag Tag - Name *Ident + Name Expr // ScopingExpr, Ident } func (*TagExpr) exprNode() {}